pub trait BlockDecrypt: BlockCipher {
    fn decrypt_block(&self, block: &mut Block<Self>);

    fn decrypt_par_blocks(&self, blocks: &mut ParBlocks<Self>) { ... }
    fn decrypt_blocks(&self, blocks: &mut [Block<Self>]) { ... }
}
Expand description

Decrypt-only functionality for block ciphers.

Required Methods

Decrypt block in-place

Provided Methods

Decrypt several blocks in parallel using instruction level parallelism if possible.

If ParBlocks equals to 1 it’s equivalent to decrypt_block.

Decrypt a slice of blocks, leveraging parallelism when available.

Implementations on Foreign Types

Implementors