1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber768/clean/ntt.h
2019-01-22 17:40:27 +01:00

10 lines
141 B
C

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