some old changes

This commit is contained in:
Andreas 2017-07-20 16:22:24 +02:00 committed by Joost Rijneveld
parent d4bc8656e3
commit dd067bd23e
No known key found for this signature in database
GPG Key ID: 307BC77F47D58EE2
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ int main()
int r; int r;
unsigned long long i; unsigned long long i;
unsigned int n = 32; unsigned int n = 32;
unsigned int h = 8; unsigned int h = 20;
unsigned int w = 16; unsigned int w = 16;
unsigned int k = 2; unsigned int k = 2;

6
wots.c
View File

@ -70,7 +70,7 @@ static void base_w(int *output, const int out_len, const unsigned char *input, c
{ {
int in = 0; int in = 0;
int out = 0; int out = 0;
uint32_t total = 0; uint8_t total = 0;
int bits = 0; int bits = 0;
int consumed = 0; int consumed = 0;
@ -116,7 +116,7 @@ void wots_sign(unsigned char *sig, const unsigned char *msg, const unsigned char
unsigned char csum_bytes[len_2_bytes]; unsigned char csum_bytes[len_2_bytes];
to_byte(csum_bytes, csum, len_2_bytes); to_byte(csum_bytes, csum, len_2_bytes);
int csum_basew[len_2_bytes / params->log_w]; int csum_basew[params->len_2];
base_w(csum_basew, params->len_2, csum_bytes, params); base_w(csum_basew, params->len_2, csum_bytes, params);
for (i = 0; i < params->len_2; i++) { for (i = 0; i < params->len_2; i++) {
@ -150,7 +150,7 @@ void wots_pkFromSig(unsigned char *pk, const unsigned char *sig, const unsigned
unsigned char csum_bytes[len_2_bytes]; unsigned char csum_bytes[len_2_bytes];
to_byte(csum_bytes, csum, len_2_bytes); to_byte(csum_bytes, csum, len_2_bytes);
int csum_basew[len_2_bytes / params->log_w]; int csum_basew[params->len_2];
base_w(csum_basew, params->len_2, csum_bytes, params); base_w(csum_basew, params->len_2, csum_bytes, params);
for (i = 0; i < params->len_2; i++) { for (i = 0; i < params->len_2; i++) {