pub struct Aes256Ctr { /* private fields */ }Expand description
AES-256 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 Aes256Ctr
impl !Unpin for Aes256Ctr
impl !UnwindSafe for Aes256Ctr
impl Freeze for Aes256Ctr
impl Send for Aes256Ctr
impl Sync for Aes256Ctr
impl UnsafeUnpin for Aes256Ctr
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