pub struct SoftwareAesCipher(/* private fields */);Trait Implementations§
Source§impl AesCipher for SoftwareAesCipher
impl AesCipher for SoftwareAesCipher
Source§fn encrypt_block(&self, block: &mut [u8; 16])
fn encrypt_block(&self, block: &mut [u8; 16])
Encrypt one 16-byte block in place.
Source§fn decrypt_block(&self, block: &mut [u8; 16])
fn decrypt_block(&self, block: &mut [u8; 16])
Decrypt one 16-byte block in place.