pub struct Aes256CbcDecrypt { /* private fields */ }Expand description
AES-256 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 Aes256CbcDecrypt
impl Clone for Aes256CbcDecrypt
Source§fn clone(&self) -> Aes256CbcDecrypt
fn clone(&self) -> Aes256CbcDecrypt
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 Aes256CbcDecrypt
impl !Unpin for Aes256CbcDecrypt
impl !UnwindSafe for Aes256CbcDecrypt
impl Freeze for Aes256CbcDecrypt
impl Send for Aes256CbcDecrypt
impl Sync for Aes256CbcDecrypt
impl UnsafeUnpin for Aes256CbcDecrypt
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