Browse Source

Prevent unnecessary type coercion

tags/v0.0.1
Joost Rijneveld 5 years ago
parent
commit
46698bf4c8
No known key found for this signature in database GPG Key ID: A4FE39CF49CBC553
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      crypto_sign/mqdss-48/clean/sign.c

+ 2
- 2
crypto_sign/mqdss-48/clean/sign.c View File

@@ -107,7 +107,7 @@ int PQCLEAN_MQDSS48_CLEAN_crypto_sign_signature(
unsigned char c[HASH_BYTES * ROUNDS * 2];
gf31 alpha;
int alpha_count = 0;
unsigned char b;
int b;
int i, j;
uint64_t s_inc[26];

@@ -251,7 +251,7 @@ int PQCLEAN_MQDSS48_CLEAN_crypto_sign_verify(
int i, j;
gf31 alpha;
int alpha_count = 0;
unsigned char b;
int b;
uint64_t s_inc[26];

if (siglen != SIG_LEN) {


Loading…
Cancel
Save