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
John Schanck 32c613e8ec Round 3 update for Dilithium (from github source) (#369)
* Update Dilithium

* Alternative montgomery reduce to avoid i386 functest errors

* Explicit casts for msvc

* More casts; bump upstream version; fix metadata

* another cast
2021-03-24 21:02:50 +00:00

11 lines
248 B
C

#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