pub struct Aes192 { /* private fields */ }Expand description
AES-192 block cipher
Trait Implementations§
Source§impl BlockCipher for Aes192
impl BlockCipher for Aes192
Source§type Algorithm = Aes192Algorithm
type Algorithm = Aes192Algorithm
The algorithm this cipher implements
Source§type Key = SecretBytes<24>
type Key = SecretBytes<24>
Key type with appropriate size guarantee
Source§fn block_size() -> usize
fn block_size() -> usize
Returns the block size in bytes
Source§impl CipherAlgorithm for Aes192
impl CipherAlgorithm for Aes192
Auto Trait Implementations§
impl Freeze for Aes192
impl RefUnwindSafe for Aes192
impl Send for Aes192
impl Sync for Aes192
impl Unpin for Aes192
impl UnwindSafe for Aes192
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