Przeglądaj źródła

Fix prf when n != 32

It wrongfully assumed that 2n + 32 = 3n
master
Joost Rijneveld 7 lat temu
rodzic
commit
51790b9d57
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: A4FE39CF49CBC553
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      hash.c

+ 1
- 1
hash.c Wyświetl plik

@@ -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);
}

/*


Ładowanie…
Anuluj
Zapisz