[][src]Crate aead

A set of traits designed to support authenticated encryption.

Re-exports

pub use generic_array;

Structs

Error
Payload

AEAD payloads are a combination of a message (plaintext or ciphertext) and "additional associated data" (AAD) to be authenticated (in cleartext) along with the message.

Traits

Aead

Authenticated Encryption with Associated Data (AEAD) algorithm.

AeadMut

Stateful Authenticated Encryption with Associated Data algorithm.

NewAead

Instantiate either a stateless (Aead) or stateful (AeadMut) algorithm.