1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber512/avx2/rejsample.h

13 lines
412 B
C
Raw Normal View History

#ifndef PQCLEAN_KYBER512_AVX2_REJSAMPLE_H
#define PQCLEAN_KYBER512_AVX2_REJSAMPLE_H
#include "params.h"
2020-10-27 13:48:42 +00:00
#include "symmetric.h"
#include <stdint.h>
2020-10-27 13:48:42 +00:00
#define REJ_UNIFORM_AVX_NBLOCKS ((12*KYBER_N/8*(1 << 12)/KYBER_Q + XOF_BLOCKBYTES)/XOF_BLOCKBYTES)
#define REJ_UNIFORM_AVX_BUFLEN (REJ_UNIFORM_AVX_NBLOCKS*XOF_BLOCKBYTES)
unsigned int PQCLEAN_KYBER512_AVX2_rej_uniform_avx(int16_t *r, const uint8_t *buf);
#endif