1 #ifndef PQCLEAN_MCELIECE6960119_AVX_CONTROLBITS_H 2 #define PQCLEAN_MCELIECE6960119_AVX_CONTROLBITS_H 3 /* 4 This file is for functions required for generating the control bits of the Benes network w.r.t. a random permutation 5 see the Lev-Pippenger-Valiant paper https://www.computer.org/csdl/trans/tc/1981/02/06312171.pdf 6 */ 7 8 9 #include <stdint.h> 10 11 void PQCLEAN_MCELIECE6960119_AVX_sort_63b(int n, uint64_t *x); 12 void PQCLEAN_MCELIECE6960119_AVX_controlbits(unsigned char *out, const uint32_t *pi); 13 14 #endif 15 16