wolf_crypto/aead/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Authenticated Encryption with Associated Data

mod aad;
mod tag;
mod aes_gcm;

pub use aad::{Aad, AadSlice};
pub use tag::Tag;

#[doc(inline)]
pub use aes_gcm::AesGcm;

non_fips! { // unfortunate
    pub mod chacha20_poly1305;
    #[doc(inline)]
    pub use chacha20_poly1305::ChaCha20Poly1305;
}