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