mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
15 lines
276 B
C
15 lines
276 B
C
|
#ifndef PQCLEAN_MCELIECE8192128_VEC_FFT_TR_H
|
||
|
#define PQCLEAN_MCELIECE8192128_VEC_FFT_TR_H
|
||
|
/*
|
||
|
This file is for transpose of the Gao-Mateer FFT
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "params.h"
|
||
|
#include "vec.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE8192128_VEC_fft_tr(vec out[][GFBITS], vec in[][ GFBITS ]);
|
||
|
|
||
|
#endif
|
||
|
|