You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
504 B

  1. #ifndef PQCLEAN_MCELIECE460896F_AVX_CONTROLBITS_H
  2. #define PQCLEAN_MCELIECE460896F_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. #include <stdint.h>
  8. void PQCLEAN_MCELIECE460896F_AVX_sort_63b(int n, uint64_t *x);
  9. void PQCLEAN_MCELIECE460896F_AVX_controlbits(unsigned char *out, const uint32_t *pi);
  10. #endif