소스 검색
Merge pull request #203 from PQClean/ds-sha3-512-finalize
Change sha3_512_inc_finalize output length to 64
master
Thom Wiggers
5 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일과
1개의 추가작업 그리고
1개의 파일을 삭제
-
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]; |
|
|
|
} |
|
|
|
} |
|
|
|