mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
11 lines
197 B
C
11 lines
197 B
C
#ifndef NTT_H
|
|
#define NTT_H
|
|
|
|
#include "params.h"
|
|
#include <stdint.h>
|
|
|
|
void PQCLEAN_DILITHIUMIII_CLEAN_ntt(uint32_t p[N]);
|
|
void PQCLEAN_DILITHIUMIII_CLEAN_invntt_frominvmont(uint32_t p[N]);
|
|
|
|
#endif
|