30 lines
666 B
C
30 lines
666 B
C
|
#ifndef PQCLEAN_DILITHIUM3AES_AVX2_AES256CTR_H
|
||
|
#define PQCLEAN_DILITHIUM3AES_AVX2_AES256CTR_H
|
||
|
|
||
|
#include <immintrin.h>
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
#define AES256CTR_BLOCKBYTES 64
|
||
|
|
||
|
typedef struct {
|
||
|
__m128i rkeys[16];
|
||
|
__m128i n;
|
||
|
} aes256ctr_ctx;
|
||
|
|
||
|
void PQCLEAN_DILITHIUM3AES_AVX2_aes256ctr_init(aes256ctr_ctx *state,
|
||
|
const uint8_t key[32],
|
||
|
uint64_t nonce);
|
||
|
|
||
|
void PQCLEAN_DILITHIUM3AES_AVX2_aes256ctr_squeezeblocks(uint8_t *out,
|
||
|
size_t nblocks,
|
||
|
aes256ctr_ctx *state);
|
||
|
|
||
|
void PQCLEAN_DILITHIUM3AES_AVX2_aes256ctr_prf(uint8_t *out,
|
||
|
size_t outlen,
|
||
|
const uint8_t seed[32],
|
||
|
uint64_t nonce);
|
||
|
|
||
|
#endif
|