Trait cipher::KeyInit

source ·
pub trait KeyInit: KeySizeUser + Sized {
    fn new(key: &GenericArray<u8, Self::KeySize>) -> Self;

    fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength> { ... }
}
Expand description

Types which can be initialized from key.

Required Methods§

Create new value from fixed size key.

Provided Methods§

Create new value from variable size key.

Implementors§

impl<OutSize> KeyInit for Blake2bMac<OutSize>where
    OutSize: ArrayLength<u8> + IsLessOrEqual<U64>,
    LeEq<OutSize, U64>: NonZero,

impl<OutSize> KeyInit for Blake2sMac<OutSize>where
    OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
    LeEq<OutSize, U32>: NonZero,

impl<T> KeyInit for CoreWrapper<T>where
    T: BufferKindUser + KeyInit,
    T::BlockSize: IsLess<U256>,
    Le<T::BlockSize, U256>: NonZero,