[openssl] master update
tomas at openssl.org
tomas at openssl.org
Tue Sep 14 12:51:04 UTC 2021
The branch master has been updated
via 24cdb1bfecbd765e829b9932a5a60ff63a7dff4b (commit)
from ea0d79db9be9066de350c44c160bd8b17f2be666 (commit)
- Log -----------------------------------------------------------------
commit 24cdb1bfecbd765e829b9932a5a60ff63a7dff4b
Author: lprimak <lenny at flowlogix.com>
Date: Sun Sep 12 20:21:30 2021 -0500
MacOS prior to 10.12 does not support random API correctly
Fixes #16517
Reviewed-by: Paul Dale <pauli at openssl.org>
Reviewed-by: Tomas Mraz <tomas at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16592)
-----------------------------------------------------------------------
Summary of changes:
include/crypto/rand.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/crypto/rand.h b/include/crypto/rand.h
index ac41a9f62b..fa3b5b2b93 100644
--- a/include/crypto/rand.h
+++ b/include/crypto/rand.h
@@ -24,7 +24,7 @@
# if defined(__APPLE__) && !defined(OPENSSL_NO_APPLE_CRYPTO_RANDOM)
# include <Availability.h>
-# if (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000) || \
+# if (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200) || \
(defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 80000)
# define OPENSSL_APPLE_CRYPTO_RANDOM 1
# include <CommonCrypto/CommonCryptoError.h>
More information about the openssl-commits
mailing list