From 21109ad603e6adc1a95013036c9c5d9e3221786b Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sat, 24 Mar 2012 21:13:30 +0100 Subject: [PATCH] more --- include/codecrypt.h | 18 +++++++++++++----- src/main.c | 6 ++++++ 2 files changed, 19 insertions(+), 5 deletions(-) create mode 100644 src/main.c diff --git a/include/codecrypt.h b/include/codecrypt.h index bf78c90..3c0b8fb 100644 --- a/include/codecrypt.h +++ b/include/codecrypt.h @@ -8,9 +8,11 @@ extern "C" { /* codecrypt matrix/vector/whatever type */ typedef char* ccr_mtx; + /* permutation as a list of transpositions */ + typedef int* ccr_perm; /* macros for faster allocation/accessing */ -#define ccr_mtx_alloc_size(veclen,nvec) ((((veclen)+7)/8)*(nvec)) +#define ccr_mtx_alloc_size(veclen,nvec) ((1+(((veclen)-1)/8))*(nvec)) #define ccr_mtx_vec_offset ccr_mtx_alloc_size struct ccr_mce_pubkey { @@ -28,8 +30,11 @@ extern "C" { /* goppa polynomial of degree t */ ccr_mtx poly; - /* inverses of P and S matrices */ - ccr_mtx pinv, sinv; + /* inverse of S matrix */ + ccr_mtx sinv; + + /* inverse of P permutation */ + ccr_perm pinv; /* parity check matrix */ ccr_mtx h; @@ -50,8 +55,11 @@ extern "C" { /* goppa polynomial of degree t */ ccr_mtx poly; - /* inverses of P and S matrices */ - ccr_mtx pinv, sinv; + /* inverse of S matrix */ + ccr_mtx sinv; + + /* inverse of P permutation */ + ccr_perm pinv; }; int ccr_mce_gen (struct ccr_mce_pubkey*, struct ccr_mce_privkey*); diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..fba61c6 --- /dev/null +++ b/src/main.c @@ -0,0 +1,6 @@ + +int main() +{ + return 0; +} +