1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use rand::{self, thread_rng, Fill, RngCore};
use rand_core::OsRng;
#[deprecated(
since = "0.0.10",
note = "Please use random_vec instead. This alias will be removed with the first stable 0.1 release."
)]
pub fn get_random_vec(len: usize) -> Vec<u8> {
random_vec(len)
}
pub fn random_vec(len: usize) -> Vec<u8> {
let mut out = vec![0u8; len];
out.try_fill(&mut thread_rng()).unwrap();
out
}
#[deprecated(
since = "0.0.10",
note = "Please use random_array instead. This alias will be removed with the first stable 0.1 release."
)]
pub fn get_random_array<A: Default + Fill>() -> A {
let mut out = A::default();
out.try_fill(&mut thread_rng()).unwrap();
out
}
pub fn random_array<const N: usize>() -> [u8; N] {
let mut out = [0u8; N];
OsRng.fill_bytes(&mut out);
out
}