Use SecRandomCopyBytes available on 10.7+ instead of CCRandomCopyBytes. #384

This commit is contained in:
Nathan Moinvaziri 2019-05-01 18:41:25 -07:00
parent a7ec00138a
commit 4072f3e3bf
2 changed files with 2 additions and 3 deletions

View File

@ -261,7 +261,7 @@ if(UNIX)
if ((MZ_PKCRYPT OR MZ_WZAES) AND NOT (MZ_OPENSSL AND OPENSSL_FOUND))
if (APPLE AND NOT MZ_BRG)
check_include_file(CommonCrypto/CommonRandom.h COMMONCRYPTO_FOUND)
check_include_file(CommonCrypto/CommonCrypto.h COMMONCRYPTO_FOUND)
if (COMMONCRYPTO_FOUND)
list(APPEND MINIZIP_SRC "mz_crypt_apple.c")
else()

View File

@ -16,7 +16,6 @@
#include <CommonCrypto/CommonCryptor.h>
#include <CommonCrypto/CommonDigest.h>
#include <CommonCrypto/CommonHMAC.h>
#include <CommonCrypto/CommonRandom.h>
#include <Security/Security.h>
#include <Security/SecPolicy.h>
@ -24,7 +23,7 @@
int32_t mz_crypt_rand(uint8_t *buf, int32_t size)
{
if (CCRandomGenerateBytes(buf, size) != kCCSuccess)
if (SecRandomCopyBytes(kSecRandomDefault, size, buf) != errSecSuccess)
return 0;
return size;
}