[−][src]Trait stream_cipher::FromBlockCipherMut
This is supported on crate feature
block-cipher only.Trait for initializing a stream cipher from a mutable block cipher
Associated Types
type BlockCipher: BlockCipherMut
This is supported on crate feature
block-cipher only.Block cipher
type NonceSize: ArrayLength<u8>
This is supported on crate feature
block-cipher only.Nonce size in bytes
Required methods
fn from_block_cipher_mut(
cipher: Self::BlockCipher,
nonce: &GenericArray<u8, Self::NonceSize>
) -> Self
cipher: Self::BlockCipher,
nonce: &GenericArray<u8, Self::NonceSize>
) -> Self
This is supported on crate feature
block-cipher only.Instantiate a stream cipher from a block cipher
Implementors
impl<C> FromBlockCipherMut for C where
C: FromBlockCipher, [src]
C: FromBlockCipher,
type BlockCipher = Self::BlockCipher
This is supported on crate feature
block-cipher only.type NonceSize = Self::NonceSize
This is supported on crate feature
block-cipher only.fn from_block_cipher_mut(
cipher: Self::BlockCipher,
nonce: &GenericArray<u8, Self::NonceSize>
) -> C[src]
cipher: Self::BlockCipher,
nonce: &GenericArray<u8, Self::NonceSize>
) -> C