pub struct AES {
pub round_keys: Vec<u8x4x4>,
pub sbox: [u8; 256],
pub rsbox: [u8; 256],
}Fields§
§round_keys: Vec<u8x4x4>§sbox: [u8; 256]§rsbox: [u8; 256]Implementations§
Auto Trait Implementations§
impl Freeze for AES
impl RefUnwindSafe for AES
impl Send for AES
impl Sync for AES
impl Unpin for AES
impl UnsafeUnpin for AES
impl UnwindSafe for AES
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