[openssl/openssl] 4b738c: providers/implementations/kdfs/argon2.c: Don't use...
Richard Levitte
noreply at github.com
Tue Mar 21 08:07:22 UTC 2023
Branch: refs/heads/master
Home: https://github.com/openssl/openssl
Commit: 4b738c1ac945a3f1a985df79ff8c37a23d2f2fe0
https://github.com/openssl/openssl/commit/4b738c1ac945a3f1a985df79ff8c37a23d2f2fe0
Author: Richard Levitte <levitte at openssl.org>
Date: 2023-03-21 (Tue, 21 Mar 2023)
Changed paths:
M providers/implementations/kdfs/argon2.c
Log Message:
-----------
providers/implementations/kdfs/argon2.c: Don't use UINT64_C
With less than C99 compilers, this macro isn't guaranteed to exist, and
the value passed to it is 32 bits, so explicitly ending it with 'UL' is
correct in all cases. We simply leave it to the compiler to extend it
appropriately for uint64_t.
Reviewed-by: Tomas Mraz <tomas at openssl.org>
Reviewed-by: Tom Cosgrove <tom.cosgrove at arm.com>
Reviewed-by: Paul Dale <pauli at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20547)
More information about the openssl-commits
mailing list