pub trait CipherAuthenticated<const TAG_SIZE: usize> {
const TAG_SIZE: usize = TAG_SIZE;
}Expand description
This trait enables restriction of a header phase to authenticated ciphers only.
Provided Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".