Trait cipher::KeyInit

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

    // Provided methods
    fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength> { ... }
    fn generate_key(
        rng: impl CryptoRng + RngCore
    ) -> GenericArray<u8, Self::KeySize> { ... }
}
Expand description

Types which can be initialized from key.

Required Methods§

source

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

Create new value from fixed size key.

Provided Methods§

source

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

Create new value from variable size key.

source

fn generate_key( rng: impl CryptoRng + RngCore ) -> GenericArray<u8, Self::KeySize>

Generate random key using the provided CryptoRng.

Implementors§

source§

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

source§

impl<T: KeyInit + BlockSizeUser> KeyInit for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

impl KeyInit for Aes256

impl KeyInit for Aes192

impl KeyInit for Aes128

impl<Aes, NonceSize, TagSize> KeyInit for AesGcm<Aes, NonceSize, TagSize>where Aes: BlockSizeUser<BlockSize = U16> + BlockEncrypt + KeyInit, TagSize: TagSize,

impl KeyInit for GHash

impl KeyInit for Polyval