1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/kyber512-90s/clean/ntt.h

14 lines
393 B
C
Raw Normal View History

2019-09-17 13:02:01 +01:00
#ifndef NTT_H
#define NTT_H
#include <stdint.h>
extern const int16_t PQCLEAN_KYBER51290S_CLEAN_zetas[128];
extern const int16_t PQCLEAN_KYBER51290S_CLEAN_zetasinv[128];
void PQCLEAN_KYBER51290S_CLEAN_ntt(int16_t *poly);
void PQCLEAN_KYBER51290S_CLEAN_invntt(int16_t *poly);
void PQCLEAN_KYBER51290S_CLEAN_basemul(int16_t r[2], const int16_t a[2], const int16_t b[2], int16_t zeta);
#endif