nettle/aead/
mod.rs

1//! Authenticated encryption mode with associated data.
2
3mod aead;
4pub use self::aead::Aead;
5use self::aead::{AdStream, AeadInternal};
6
7mod eax;
8pub use self::eax::Eax;
9mod ocb;
10pub use self::ocb::{Ocb, OCB_IS_SUPPORTED, typenum};
11mod gcm;
12pub use self::gcm::Gcm;
13mod ccm;
14pub use self::ccm::Ccm;
15mod chacha_poly1305;
16pub use self::chacha_poly1305::ChaChaPoly1305;