pub trait AesBlockCipherDecrypt: AesBlockCipher {
    fn decrypt_many<const N: usize>(&self, blocks: [U8x16; N]) -> [U8x16; N]
    where
        ArrayUnrolledOps: UnrollableArraySize<N>
; fn decrypt(&self, block: U8x16) -> U8x16 { ... } }

Required Methods

Provided Methods

Implementors