mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Use SecRandomCopyBytes available on 10.7+ instead of CCRandomCopyBytes. #384
This commit is contained in:
parent
a7ec00138a
commit
4072f3e3bf
@ -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()
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user