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

12 lines
244 B
C
Raw Normal View History

2019-12-06 15:16:41 +00:00
#ifndef PQCLEAN_DILITHIUM3_CLEAN_NTT_H
#define PQCLEAN_DILITHIUM3_CLEAN_NTT_H
#include <stdint.h>
2019-12-06 15:16:41 +00:00
#include "params.h"
void PQCLEAN_DILITHIUM3_CLEAN_ntt(uint32_t p[N]);
void PQCLEAN_DILITHIUM3_CLEAN_invntt_frominvmont(uint32_t p[N]);
#endif