Trait block_cipher_trait::BlockCipher [] [src]

pub trait BlockCipher {
    type BlockSize: ArrayLength<u8>;
    fn encrypt_block(&self, block: &mut Block<Self::BlockSize>);
fn decrypt_block(&self, block: &mut Block<Self::BlockSize>); }

Associated Types

Required Methods

Implementors