Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

bf_decoding.h 461 B

5 anos atrás
5 anos atrás
123456789101112131415161718
  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