Changeset 91831 in vbox
- Timestamp:
- Oct 18, 2021 4:55:57 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147624
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-1.1.1l/crypto/rand/rand_unix.c
r91772 r91831 35 35 # include <sys/param.h> 36 36 #endif 37 #if defined(__APPLE__) 37 #if defined(__APPLE__) && MAC_OS_X_VERSION_MIN_REQUIRED >= 10100 38 38 # include <CommonCrypto/CommonRandom.h> 39 39 #endif … … 382 382 return -1; 383 383 } 384 # elif defined(__APPLE__) 384 # elif defined(__APPLE__) && MAC_OS_X_VERSION_MIN_REQUIRED >= 10100 385 385 if (CCRandomGenerateBytes(buf, buflen) == kCCSuccess) 386 386 return (ssize_t)buflen;
Note:
See TracChangeset
for help on using the changeset viewer.