1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 23:48:58 +00:00
pqcrypto/crypto_sign/dilithium-iii/clean/ntt.h
2019-01-22 17:40:27 +01:00

11 lines
185 B
C

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