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

11 lines
248 B
C
Raw Normal View History

#ifndef PQCLEAN_DILITHIUM3AES_CLEAN_NTT_H
#define PQCLEAN_DILITHIUM3AES_CLEAN_NTT_H
#include "params.h"
#include <stdint.h>
void PQCLEAN_DILITHIUM3AES_CLEAN_ntt(int32_t a[N]);
void PQCLEAN_DILITHIUM3AES_CLEAN_invntt_tomont(int32_t a[N]);
#endif