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
14 lines
383 B
C
14 lines
383 B
C
#ifndef NTT_H
|
|
#define NTT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern const int16_t PQCLEAN_KYBER1024_CLEAN_zetas[128];
|
|
extern const int16_t PQCLEAN_KYBER1024_CLEAN_zetasinv[128];
|
|
|
|
void PQCLEAN_KYBER1024_CLEAN_ntt(int16_t *poly);
|
|
void PQCLEAN_KYBER1024_CLEAN_invntt(int16_t *poly);
|
|
void PQCLEAN_KYBER1024_CLEAN_basemul(int16_t r[2], const int16_t a[2], const int16_t b[2], int16_t zeta);
|
|
|
|
#endif
|