pub trait IvState: IvSizeUser {
// Required method
fn iv_state(&self) -> GenericArray<u8, Self::IvSize>;
}Expand description
Trait for loading current IV state.
Required Methods§
Sourcefn iv_state(&self) -> GenericArray<u8, Self::IvSize>
fn iv_state(&self) -> GenericArray<u8, Self::IvSize>
Returns current IV state.
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.