pub struct Aes128DecX2 { /* private fields */ }Trait Implementations§
Source§impl AesDecryptX2<16> for Aes128DecX2
impl AesDecryptX2<16> for Aes128DecX2
type Encrypter = Aes128EncX2
fn encrypter(&self) -> Self::Encrypter
Source§fn decrypt_2_blocks(&self, ciphertext: AesBlockX2) -> AesBlockX2
fn decrypt_2_blocks(&self, ciphertext: AesBlockX2) -> AesBlockX2
Decrypt two blocks, using the first key for the first block, and the second key for the second block
Source§fn decrypt_4_blocks(&self, ciphertext: AesBlockX4) -> AesBlockX4
fn decrypt_4_blocks(&self, ciphertext: AesBlockX4) -> AesBlockX4
Decrypt four blocks, using the first key for the first two blocks, and the second key for the second two blocks
Source§impl Clone for Aes128DecX2
impl Clone for Aes128DecX2
Source§fn clone(&self) -> Aes128DecX2
fn clone(&self) -> Aes128DecX2
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Aes128DecX2
impl Debug for Aes128DecX2
Auto Trait Implementations§
impl Freeze for Aes128DecX2
impl RefUnwindSafe for Aes128DecX2
impl Send for Aes128DecX2
impl Sync for Aes128DecX2
impl Unpin for Aes128DecX2
impl UnwindSafe for Aes128DecX2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more