From 7eeefcd841e6e58ecc0107acf550d1c12a7769ef Mon Sep 17 00:00:00 2001 From: Shane Lontis Date: Thu, 9 May 2019 12:33:46 +1000 Subject: [PATCH] Fixed 32bit issue for kdf_opts Reviewed-by: Richard Levitte Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/8901) --- include/openssl/crypto.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/openssl/crypto.h b/include/openssl/crypto.h index 3eef3e96fa..5322cc8f04 100644 --- a/include/openssl/crypto.h +++ b/include/openssl/crypto.h @@ -397,13 +397,11 @@ int CRYPTO_memcmp(const void * in_a, const void * in_b, size_t len); /* OPENSSL_INIT flag range 0x03f00000 reserved for OPENSSL_init_ssl() */ # define OPENSSL_INIT_NO_ADD_ALL_MACS 0x04000000L # define OPENSSL_INIT_ADD_ALL_MACS 0x08000000L -/* FREE: 0x10000000L */ -/* FREE: 0x20000000L */ +# define OPENSSL_INIT_NO_ADD_ALL_KDFS 0x10000000L +# define OPENSSL_INIT_ADD_ALL_KDFS 0x20000000L /* FREE: 0x40000000L */ /* FREE: 0x80000000L */ /* Max OPENSSL_INIT flag value is 0x80000000 */ -# define OPENSSL_INIT_NO_ADD_ALL_KDFS 0x100000000L -# define OPENSSL_INIT_ADD_ALL_KDFS 0x200000000L /* openssl and dasync not counted as builtin */ # define OPENSSL_INIT_ENGINE_ALL_BUILTIN \ -- 2.25.1