cipher

Trait IvState

Source
pub trait IvState: IvSizeUser {
    // Required method
    fn iv_state(&self) -> Iv<Self>;
}
Expand description

Trait for loading current IV state.

Required Methods§

Source

fn iv_state(&self) -> Iv<Self>

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.

Implementors§