Trait KeyIvInit
pub trait KeyIvInit: KeySizeUser + IvSizeUser + Sized
Types which can be initialized from a key and initialization vector (nonce).
Required Methods
fn new(key: &Key<Self>, iv: &Iv<Self>) -> SelfCreate new value from fixed length key and nonce.
Provided Methods
fn new_from_slices(key: &[u8], iv: &[u8]) -> Result<Self, InvalidLength>Create new value from variable length key and nonce.
Errors
Returns
InvalidLengthin the event thatkeyand/orivare not the expected length.
Implementors
impl<T> KeyIvInit for T where T: InnerIvInit, T::Inner: KeyInit,