1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_sign/dilithium-iii/clean/ntt.h
2019-01-16 10:21:05 +01:00

11 lines
143 B
C

#ifndef NTT_H
#define NTT_H
#include "params.h"
#include <stdint.h>
void ntt(uint32_t p[N]);
void invntt_frominvmont(uint32_t p[N]);
#endif