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
Thom Wiggers f4bd312180 Adds AVX2 variants of Kyber512, Kyber768, Kyber1024 (#225)
* 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
2019-09-10 11:45:01 +02:00

13 lines
215 B
C

#ifndef REJSAMPLE_H
#define REJSAMPLE_H
#include <stddef.h>
#include <stdint.h>
size_t PQCLEAN_KYBER512_AVX2_rej_uniform(int16_t *r,
size_t len,
const uint8_t *buf,
size_t buflen);
#endif