1 2 3 4 5
pub fn fill_bytes(bytes: &mut [u8]) { unsafe { wasi::random_get(bytes.as_mut_ptr(), bytes.len()).expect("failed to generate random data") } }