mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
27 lines
839 B
C
27 lines
839 B
C
|
#pragma once
|
||
|
#include "qc_ldpc_parameters.h"
|
||
|
#include "gf2x_limbs.h"
|
||
|
#include "gf2x_arith_mod_xPplusOne.h"
|
||
|
|
||
|
|
||
|
/*----------------------------------------------------------------------------*/
|
||
|
#pragma pack(1)
|
||
|
|
||
|
typedef struct {
|
||
|
/* raw entropy extracted from TRNG, will be deterministically expanded into
|
||
|
* H and Q during decryption */
|
||
|
unsigned char prng_seed[TRNG_BYTE_LENGTH];
|
||
|
int8_t rejections;
|
||
|
} privateKeyNiederreiter_t;
|
||
|
|
||
|
typedef struct {
|
||
|
DIGIT Mtr[(N0 - 1)*NUM_DIGITS_GF2X_ELEMENT];
|
||
|
// Dense representation of the matrix M=Ln0*L,
|
||
|
// An array including a sequence of (N0-1) gf2x elements;
|
||
|
// each gf2x element is stored as a binary polynomial(mod x^P+1)
|
||
|
// with P coefficients.
|
||
|
} publicKeyNiederreiter_t;
|
||
|
|
||
|
#pragma pack()
|
||
|
/*----------------------------------------------------------------------------*/
|