pub const NONCE_SIZE: usize = 12;
Expand description

AES-GCM-SIV nonce size.

A nonce is a single-use value which enables securely encrypting multiple messages under the same key. Nonces need not be random: a counter can be used so long as the values are never repeated under the same key.