16 lines
383 B
C
16 lines
383 B
C
|
#ifndef PQCLEAN_MCELIECE460896_SSE_BENES_H
|
||
|
#define PQCLEAN_MCELIECE460896_SSE_BENES_H
|
||
|
/*
|
||
|
This file is for Benes network related functions
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "gf.h"
|
||
|
#include "vec128.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE460896_SSE_load_bits(vec128 /*bits_int*/[][32], const unsigned char * /*bits*/);
|
||
|
void PQCLEAN_MCELIECE460896_SSE_benes(vec128 * /*r*/, vec128 /*b*/[][32], int /*rev*/);
|
||
|
|
||
|
#endif
|
||
|
|