Sfoglia il codice sorgente

Fix prf when n != 32

It wrongfully assumed that 2n + 32 = 3n
master
Joost Rijneveld 7 anni fa
parent
commit
51790b9d57
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A4FE39CF49CBC553
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      hash.c

+ 1
- 1
hash.c Vedi File

@@ -56,7 +56,7 @@ int prf(const xmss_params *params,
memcpy(buf + params->n, key, params->n);
memcpy(buf + 2*params->n, in, 32);

return core_hash(params, out, buf, 3 * params->n);
return core_hash(params, out, buf, 2*params->n + 32);
}

/*


Caricamento…
Annulla
Salva