mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 12:11:44 +00:00
Fix SHA3 calculation.
This commit is contained in:
parent
f50071cf45
commit
d3b007d9af
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef SHA3_HASH_SIZE_BYTES
|
#ifndef SHA3_HASH_SIZE_BYTES
|
||||||
#define SHA3_HASH_SIZE_BYTES(bits) ((bits) / sizeof(u8))
|
#define SHA3_HASH_SIZE_BYTES(bits) ((bits) / 8)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef SHA3_BLOCK_SIZE
|
#ifndef SHA3_BLOCK_SIZE
|
||||||
|
|
Loading…
Reference in a new issue