mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
15 lines
378 B
C
15 lines
378 B
C
|
#ifndef PQCLEAN_MCELIECE348864_CLEAN_BENES_H
|
||
|
#define PQCLEAN_MCELIECE348864_CLEAN_BENES_H
|
||
|
/*
|
||
|
This file is for Benes network related functions
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "gf.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE348864_CLEAN_apply_benes(unsigned char * /*r*/, const unsigned char * /*bits*/, int /*rev*/);
|
||
|
void PQCLEAN_MCELIECE348864_CLEAN_support_gen(gf * /*s*/, const unsigned char * /*c*/);
|
||
|
|
||
|
#endif
|
||
|
|