17 lines
333 B
C
17 lines
333 B
C
|
#ifndef PQCLEAN_MCELIECE6688128F_VEC_FFT_H
|
||
|
#define PQCLEAN_MCELIECE6688128F_VEC_FFT_H
|
||
|
/*
|
||
|
This file is for the Gao-Mateer FFT
|
||
|
sse http://www.math.clemson.edu/~sgao/papers/GM10.pdf
|
||
|
*/
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "params.h"
|
||
|
#include "vec.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE6688128F_VEC_fft(vec out[][ GFBITS ], vec in[][GFBITS]);
|
||
|
|
||
|
#endif
|
||
|
|