pub struct Aad<A>(_);Expand description
The additionally authenticated data (AAD) for an opening or sealing operation. This data is authenticated but is not encrypted.
The type A could be a byte slice &[u8], a byte array [u8; N]
for some constant N, Vec<u8>, etc.