This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
pqc
Watch
1
Star
1
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Merge pull request
#203
from PQClean/ds-sha3-512-finalize
Change sha3_512_inc_finalize output length to 64
master
Thom Wiggers
5 years ago
committed by
GitHub
parent
0ed5ba4a30
e53cf16fa8
commit
be941b28a8
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
common/fips202.c
+ 1
- 1
common/fips202.c
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];
}
}
}
}
Write
Preview
Loading…
Cancel
Save