Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

19 wiersze
461 B

  1. #ifndef BF_DECODING_H
  2. #define BF_DECODING_H
  3. #include "gf2x_arith.h"
  4. #include "qc_ldpc_parameters.h"
  5. /* Definitions for DFR level 2^-SL with SL=128 */
  6. #define ITERATIONS_MAX (2)
  7. #define B0 (43)
  8. #define T_BAR (4)
  9. int PQCLEAN_LEDAKEMLT12_LEAKTIME_bf_decoding(DIGIT err[],
  10. const POSITION_T HtrPosOnes[N0][DV],
  11. const POSITION_T QtrPosOnes[N0][M],
  12. DIGIT privateSyndrome[],
  13. uint8_t threshold); // B2
  14. #endif