pub struct Aes128CbcEncrypt { /* private fields */ }Expand description
AES-128 CBC.
CBC mode encryptor. 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 encrypted in several calls.
Implementations§
Trait Implementations§
Source§impl Clone for Aes128CbcEncrypt
impl Clone for Aes128CbcEncrypt
Source§fn clone(&self) -> Aes128CbcEncrypt
fn clone(&self) -> Aes128CbcEncrypt
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 Aes128CbcEncrypt
impl !Unpin for Aes128CbcEncrypt
impl !UnwindSafe for Aes128CbcEncrypt
impl Freeze for Aes128CbcEncrypt
impl Send for Aes128CbcEncrypt
impl Sync for Aes128CbcEncrypt
impl UnsafeUnpin for Aes128CbcEncrypt
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