nettle 3.0.0

Rust bindings for the Nettle cryptographic library
1
2
3
4
5
6
7
8
9
10
11
//! Authenticated encryption mode with associated data.

mod aead;
pub use self::aead::Aead;

mod eax;
pub use self::eax::Eax;
mod gcm;
pub use self::gcm::Gcm;
mod ccm;
pub use self::ccm::Ccm;