apple_security_framework_sys/
random.rs1use std::os::raw::c_int;
2use std::os::raw::c_void;
3
4pub enum __SecRandom {}
5pub type SecRandomRef = *const __SecRandom;
6
7extern "C" {
8 pub static kSecRandomDefault: SecRandomRef;
9
10 pub fn SecRandomCopyBytes(rnd: SecRandomRef, count: usize, bytes: *mut c_void) -> c_int;
11}