pqc/crypto_kem/kyber768/clean/ntt.h
Thom Wiggers 4d0082fa43
Add travis config
Also fixes some tidy issues

Not sure why my local clang-tidy doesn't complain
2019-01-16 14:54:24 +01:00

10 lines
107 B
C

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