2020-10-27 00:05:07 +00:00
|
|
|
#ifndef PQCLEAN_KYBER76890S_CLEAN_SYMMETRIC_H
|
|
|
|
#define PQCLEAN_KYBER76890S_CLEAN_SYMMETRIC_H
|
2020-10-27 13:48:42 +00:00
|
|
|
#include "aes256ctr.h"
|
2019-09-17 13:02:01 +01:00
|
|
|
#include "params.h"
|
2020-10-27 00:05:07 +00:00
|
|
|
#include "sha2.h"
|
2020-07-31 07:17:42 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
2019-09-17 13:02:01 +01:00
|
|
|
|
|
|
|
|
2020-07-31 07:17:42 +01:00
|
|
|
|
|
|
|
|
2020-10-27 13:48:42 +00:00
|
|
|
typedef aes256ctr_ctx xof_state;
|
|
|
|
|
|
|
|
void PQCLEAN_KYBER76890S_CLEAN_kyber_aes256xof_absorb(aes256ctr_ctx *state, const uint8_t seed[32], uint8_t x, uint8_t y);
|
|
|
|
|
|
|
|
void PQCLEAN_KYBER76890S_CLEAN_kyber_aes256ctr_prf(uint8_t *out, size_t outlen, const uint8_t key[32], uint8_t nonce);
|
|
|
|
|
|
|
|
#define XOF_BLOCKBYTES AES256CTR_BLOCKBYTES
|
2019-09-17 13:02:01 +01:00
|
|
|
|
|
|
|
#define hash_h(OUT, IN, INBYTES) sha256(OUT, IN, INBYTES)
|
|
|
|
#define hash_g(OUT, IN, INBYTES) sha512(OUT, IN, INBYTES)
|
2020-10-27 13:48:42 +00:00
|
|
|
#define xof_absorb(STATE, SEED, X, Y) PQCLEAN_KYBER76890S_CLEAN_kyber_aes256xof_absorb(STATE, SEED, X, Y)
|
|
|
|
#define xof_squeezeblocks(OUT, OUTBLOCKS, STATE) PQCLEAN_KYBER76890S_CLEAN_aes256ctr_squeezeblocks(OUT, OUTBLOCKS, STATE)
|
|
|
|
#define xof_ctx_release(STATE)
|
|
|
|
#define prf(OUT, OUTBYTES, KEY, NONCE) PQCLEAN_KYBER76890S_CLEAN_kyber_aes256ctr_prf(OUT, OUTBYTES, KEY, NONCE)
|
2019-09-17 13:02:01 +01:00
|
|
|
#define kdf(OUT, IN, INBYTES) sha256(OUT, IN, INBYTES)
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* SYMMETRIC_H */
|