pub struct AesBlockCipher {
id: BlockCipherId,
key_len: usize,
}
Expand description
An AES Block Cipher
Fields§
§id: BlockCipherId
§key_len: usize
Trait Implementations§
Source§impl BlockCipher for AesBlockCipher
impl BlockCipher for AesBlockCipher
Source§impl Debug for AesBlockCipher
impl Debug for AesBlockCipher
impl Sealed for AesBlockCipher
Auto Trait Implementations§
impl Freeze for AesBlockCipher
impl RefUnwindSafe for AesBlockCipher
impl Send for AesBlockCipher
impl Sync for AesBlockCipher
impl Unpin for AesBlockCipher
impl UnwindSafe for AesBlockCipher
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