mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
10 lines
175 B
C
10 lines
175 B
C
|
#ifndef REDUCE_H
|
||
|
#define REDUCE_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void PQCLEAN_DILITHIUM4_AVX2_reduce_avx(uint32_t a[N]);
|
||
|
void PQCLEAN_DILITHIUM4_AVX2_csubq_avx(uint32_t a[N]);
|
||
|
|
||
|
#endif
|