Trait AES128ECB

Source
pub trait AES128ECB {
    // Required method
    fn set_mode_aes128ecb(&self, encrypting: bool) -> Result<(), ErrorCode>;
}

Required Methods§

Source

fn set_mode_aes128ecb(&self, encrypting: bool) -> Result<(), ErrorCode>

Call before AES128::crypt() to perform AES128ECB

Implementors§

impl<'a, A: AES128<'a> + AES128Ctr + AES128CBC + AES128ECB + AES128CCM<'a>> AES128ECB for Aes128Gcm<'a, A>

impl<'a, A: AES128<'a> + AES128Ctr + AES128CBC + AES128ECB> AES128ECB for VirtualAES128CCM<'a, A>

impl AES128ECB for Aes<'_>

impl AES128ECB for AesECB<'_>

impl AES128ECB for Aes<'_>