pqc/crypto_kem/kyber768/clean/ntt.h
John M. Schanck 688ff2fe50 Round 3 Kyber
2020-11-26 21:42:35 -05:00

15 lines
388 B
C

#ifndef PQCLEAN_KYBER768_CLEAN_NTT_H
#define PQCLEAN_KYBER768_CLEAN_NTT_H
#include "params.h"
#include <stdint.h>
extern const int16_t PQCLEAN_KYBER768_CLEAN_zetas[128];
void PQCLEAN_KYBER768_CLEAN_ntt(int16_t r[256]);
void PQCLEAN_KYBER768_CLEAN_invntt(int16_t r[256]);
void PQCLEAN_KYBER768_CLEAN_basemul(int16_t r[2], const int16_t a[2], const int16_t b[2], int16_t zeta);
#endif