You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
330 B

  1. #ifndef PQCLEAN_MCELIECE6960119_VEC_FFT_H
  2. #define PQCLEAN_MCELIECE6960119_VEC_FFT_H
  3. /*
  4. This file is for the Gao-Mateer FFT
  5. sse http://www.math.clemson.edu/~sgao/papers/GM10.pdf
  6. */
  7. #include <stdint.h>
  8. #include "params.h"
  9. #include "vec.h"
  10. void PQCLEAN_MCELIECE6960119_VEC_fft(vec out[][ GFBITS ], vec in[][GFBITS]);
  11. #endif