pub trait AeadCore {
type NonceSize: ArraySize;
type TagSize: ArraySize;
const TAG_POSITION: TagPosition;
}Expand description
Authenticated Encryption with Associated Data (AEAD) algorithm.
Required Associated Constants§
Sourceconst TAG_POSITION: TagPosition
const TAG_POSITION: TagPosition
The AEAD tag position.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.