Fix our sha224 implementation.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6169 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
578d12f254
commit
bc2c6efa08
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@
|
|||
#undef sha2_init
|
||||
#if SHA2==256
|
||||
#define U64_C(n) (n##ull>>32)
|
||||
#define U64_C_LOW(n) (u64)U64_C(n)
|
||||
#define U64_C_LOW(n) (u64)(n##ull)
|
||||
#define u64 quint32_t
|
||||
#define ROUNDS 64
|
||||
#define SHA2_CONTEXT SHA256_CONTEXT
|
||||
|
|
Loading…
Reference in a new issue