use RngCore;
pub use *;
pub use *;
/// Generates an array of random bytes of specified size.
///
/// # Examples
/// ```
/// use ic_object_store::rand_bytes;
///
/// let random_bytes: [u8; 32] = rand_bytes();
/// assert_eq!(random_bytes.len(), 32);
/// ```