wolf_crypto/aead/
mod.rs

1//! Authenticated Encryption with Associated Data
2
3mod aad;
4mod tag;
5mod aes_gcm;
6
7pub use aad::{Aad, AadSlice};
8pub use tag::Tag;
9
10#[doc(inline)]
11pub use aes_gcm::AesGcm;
12
13non_fips! { // unfortunate
14    pub mod chacha20_poly1305;
15    #[doc(inline)]
16    pub use chacha20_poly1305::ChaCha20Poly1305;
17}