[][src]Trait stream_cipher::FromBlockCipher

pub trait FromBlockCipher {
    type BlockCipher: BlockCipher;
    type NonceSize: ArrayLength<u8>;
    fn from_block_cipher(
        cipher: Self::BlockCipher,
        nonce: &GenericArray<u8, Self::NonceSize>
    ) -> Self; }
This is supported on crate feature block-cipher only.

Trait for initializing a stream cipher from a block cipher

Associated Types

type BlockCipher: BlockCipher

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

Loading content...

Required methods

fn from_block_cipher(
    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

Loading content...

Implementors

Loading content...