15 lines
375 B
C
15 lines
375 B
C
|
#ifndef PQCLEAN_MCELIECE6688128F_SSE_BENES_H
|
||
|
#define PQCLEAN_MCELIECE6688128F_SSE_BENES_H
|
||
|
/*
|
||
|
This file is for Benes network related functions
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "vec128.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE6688128F_SSE_load_bits(vec128 /*bits_int*/[][32], const unsigned char * /*bits*/);
|
||
|
void PQCLEAN_MCELIECE6688128F_SSE_benes(vec128 * /*r*/, vec128 /*b*/[][32], int /*rev*/);
|
||
|
|
||
|
#endif
|
||
|
|