pqc/crypto_kem/kyber768/clean/ntt.h
2019-01-16 10:45:27 +01:00

10 lines
119 B
C

#ifndef NTT_H
#define NTT_H
#include <stdint.h>
void ntt(uint16_t *poly);
void invntt(uint16_t *a);
#endif