Searched refs:SecRandomCopyBytes (Results 1 – 4 of 4) sorted by relevance
/external/rust/crates/getrandom/src/ |
D | ios.rs | 15 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/ |
D | rand.rs | 390 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/ |
D | SRWebSocket.m | 507 BOOL success = !SecRandomCopyBytes(kSecRandomDefault, keyBytes.length, keyBytes.mutableBytes); 1365 … BOOL success = !SecRandomCopyBytes(kSecRandomDefault, sizeof(uint32_t), (uint8_t *)mask_key);
|
/external/rust/crates/rand/ |
D | CHANGELOG.md | 363 - Use the `SecRandomCopyBytes` interface on macOS. (#322)
|