Kaynağa Gözat
Merge pull request #203 from PQClean/ds-sha3-512-finalize
Change sha3_512_inc_finalize output length to 64
master
Thom Wiggers
5 yıl önce
committed by
GitHub
ebeveyn
işleme
be941b28a8
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile
1 ekleme ve
1 silme
-
common/fips202.c
|
|
@@ -775,7 +775,7 @@ void sha3_512_inc_finalize(uint8_t *output, sha3_512incctx *state) { |
|
|
|
|
|
|
|
keccak_squeezeblocks(t, 1, state->ctx, SHA3_512_RATE); |
|
|
|
|
|
|
|
for (size_t i = 0; i < 32; i++) { |
|
|
|
for (size_t i = 0; i < 64; i++) { |
|
|
|
output[i] = t[i]; |
|
|
|
} |
|
|
|
} |
|
|
|