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
185 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>
2019-01-22 16:38:22 +00:00
void PQCLEAN_DILITHIUMIII_ntt(uint32_t p[N]);
void PQCLEAN_DILITHIUMIII_invntt_frominvmont(uint32_t p[N]);
2019-01-16 09:15:18 +00:00
#endif