Home
last modified time | relevance | path

Searched refs:SecRandomCopyBytes (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/getrandom/src/
Dios.rs15 fn SecRandomCopyBytes(rnd: *const c_void, count: usize, bytes: *mut u8) -> i32; in SecRandomCopyBytes() function
20 let ret = unsafe { SecRandomCopyBytes(null(), dest.len(), dest.as_mut_ptr()) }; in getrandom_inner()
/external/rust/crates/ring/src/
Drand.rs390 let r = unsafe { SecRandomCopyBytes(kSecRandomDefault, dest.len(), dest.as_mut_ptr()) }; in fill()
410 fn SecRandomCopyBytes( in SecRandomCopyBytes() function
/external/webrtc/examples/objc/AppRTCMobile/third_party/SocketRocket/
DSRWebSocket.m507 BOOL success = !SecRandomCopyBytes(kSecRandomDefault, keyBytes.length, keyBytes.mutableBytes);
1365 … BOOL success = !SecRandomCopyBytes(kSecRandomDefault, sizeof(uint32_t), (uint8_t *)mask_key);
/external/rust/crates/rand/
DCHANGELOG.md363 - Use the `SecRandomCopyBytes` interface on macOS. (#322)