Trait ring_compat::aead::KeyInit

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

    // Provided method
    fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength> { ... }
}
Available on crate feature aead only.
Expand description

Types which can be initialized from key.

Required Methods§

fn new(key: &GenericArray<u8, Self::KeySize>) -> Self

Create new value from fixed size key.

Provided Methods§

fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>

Create new value from variable size key.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> KeyInit for CoreWrapper<T>where T: BufferKindUser + KeyInit, <T as BlockSizeUser>::BlockSize: IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>, <<T as BlockSizeUser>::BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: NonZero,

source§

fn new( key: &GenericArray<u8, <CoreWrapper<T> as KeySizeUser>::KeySize> ) -> CoreWrapper<T>

source§

fn new_from_slice(key: &[u8]) -> Result<CoreWrapper<T>, InvalidLength>

Implementors§

source§

impl KeyInit for Aes128Gcm

source§

impl KeyInit for Aes256Gcm

source§

impl KeyInit for ChaCha20Poly1305

§

impl<T> KeyInit for Twhere T: InnerInit, <T as InnerUser>::Inner: KeyInit,