2019-05-24 17:38:54 +01:00
|
|
|
#ifndef H_Q_MATRICES_GENERATION_H
|
|
|
|
#define H_Q_MATRICES_GENERATION_H
|
|
|
|
|
2019-05-19 18:14:46 +01:00
|
|
|
#include "gf2x_limbs.h"
|
2019-05-27 19:17:53 +01:00
|
|
|
#include "qc_ldpc_parameters.h"
|
2019-05-19 18:14:46 +01:00
|
|
|
#include "rng.h"
|
|
|
|
|
2019-05-24 17:38:54 +01:00
|
|
|
void PQCLEAN_LEDAKEMLT12_CLEAN_generateHPosOnes_HtrPosOnes(
|
|
|
|
POSITION_T HPosOnes[N0][DV],
|
|
|
|
POSITION_T HtrPosOnes[N0][DV],
|
|
|
|
AES_XOF_struct *niederreiter_keys_expander);
|
2019-05-19 18:14:46 +01:00
|
|
|
|
2019-05-24 17:38:54 +01:00
|
|
|
void PQCLEAN_LEDAKEMLT12_CLEAN_generateQsparse(
|
|
|
|
POSITION_T pos_ones[N0][M],
|
|
|
|
AES_XOF_struct *niederreiter_keys_expander);
|
2019-05-19 18:14:46 +01:00
|
|
|
|
2019-05-24 17:38:54 +01:00
|
|
|
#endif
|