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
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! Random value generation.
use MaybeUninit;
use crate::;
/// Fills `bytes` with random bytes.
///
/// # Underlying sources
///
/// This is currently implemented by reading the host system's `/dev/urandom`.
///
/// On the host system does not have `/dev/urandom` like Windows, this always returns an error.
///
/// Note that the sources used might change over time.
/// Fills `bytes` with random bytes.
///
/// Unlike [`fill_bytes`], this takes potentially uninitialized bytes.
///
/// See [`fill_bytes`] for details.