Merge pull request #203 from PQClean/ds-sha3-512-finalize

Change sha3_512_inc_finalize output length to 64
This commit is contained in:
Thom Wiggers 2019-07-05 16:32:05 +02:00 committed by GitHub
commit be941b28a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -775,7 +775,7 @@ void sha3_512_inc_finalize(uint8_t *output, sha3_512incctx *state) {
keccak_squeezeblocks(t, 1, state->ctx, SHA3_512_RATE); 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]; output[i] = t[i];
} }
} }