pub struct Aes128Ctr { /* private fields */ }Expand description
AES-128 CTR.
CTR mode with a 128-bit big-endian counter (NIST SP 800-38A). Encryption and decryption are the same operation. Data of any length is accepted, in any number of calls: the keystream position is kept across calls.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Aes128Ctr
impl !Unpin for Aes128Ctr
impl !UnwindSafe for Aes128Ctr
impl Freeze for Aes128Ctr
impl Send for Aes128Ctr
impl Sync for Aes128Ctr
impl UnsafeUnpin for Aes128Ctr
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