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