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

10 lines
107 B
C
Raw Normal View History

2019-01-16 10:02:32 +00:00
#ifndef NTT_H
#define NTT_H
#include <stdint.h>
void ntt(uint16_t *p);
2019-01-16 10:02:32 +00:00
void invntt(uint16_t *a);
#endif