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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
use crateCryptoError;
/// Generates secure random nonces for AES-256-GCM encryption.
///
/// An AES-GCM nonce must be unique for every encryption operation
/// performed with the same key. Reusing a nonce with the same key
/// can compromise the security of the encryption.
///
/// This generator creates a cryptographically secure random nonce
/// using the operating system random number generator through
/// `getrandom`.
///
/// # Nonce size
///
/// AES-256-GCM uses a 96-bit nonce (12 bytes), which is the recommended
/// size defined by the AES-GCM specification.
///
/// # Example
///
/// ```rust
/// use rusty_crypt::AesGcmGeneratedNonce;
///
/// let nonce_generator = AesGcmGeneratedNonce;
///
/// let nonce = nonce_generator
/// .generate_nonce()
/// .expect("Nonce generation failed");
///
/// assert_eq!(nonce.len(), 12);
/// ```
;