f4bd312180
* Integrate Kyber-AVX2 into PQClean * Fix types and formatting in Kyber * Workaround a valgrind crash * Remove comment in shuffle.s * Remove some extraneous truncations * fixup! Fix types and formatting in Kyber
13 lines
216 B
C
13 lines
216 B
C
#ifndef REJSAMPLE_H
|
|
#define REJSAMPLE_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
size_t PQCLEAN_KYBER1024_AVX2_rej_uniform(int16_t *r,
|
|
size_t len,
|
|
const uint8_t *buf,
|
|
size_t buflen);
|
|
|
|
#endif
|