pqc/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