pub struct Aes128CbcDecrypt { /* private fields */ }Expand description
AES-128 CBC.
CBC mode decryptor. Data is processed a whole number of blocks at a time; padding is the caller’s responsibility. The chaining state is kept across calls, so a message may be decrypted in several calls.
Implementations§
Trait Implementations§
Source§impl Clone for Aes128CbcDecrypt
impl Clone for Aes128CbcDecrypt
Source§fn clone(&self) -> Aes128CbcDecrypt
fn clone(&self) -> Aes128CbcDecrypt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for Aes128CbcDecrypt
impl !Unpin for Aes128CbcDecrypt
impl !UnwindSafe for Aes128CbcDecrypt
impl Freeze for Aes128CbcDecrypt
impl Send for Aes128CbcDecrypt
impl Sync for Aes128CbcDecrypt
impl UnsafeUnpin for Aes128CbcDecrypt
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