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

11 lines
197 B
C
Raw Normal View History

2019-01-16 09:15:18 +00:00
#ifndef NTT_H
#define NTT_H
#include "params.h"
#include <stdint.h>
void PQCLEAN_DILITHIUMIII_CLEAN_ntt(uint32_t p[N]);
void PQCLEAN_DILITHIUMIII_CLEAN_invntt_frominvmont(uint32_t p[N]);
2019-01-16 09:15:18 +00:00
#endif