#[repr(C)]pub struct Aes {
pub key: [word32; 60],
pub rounds: word32,
pub keylen: c_int,
pub reg: [word32; 4],
pub tmp: [word32; 4],
pub invokeCtr: [word32; 2],
pub nonceSz: word32,
pub gcm: Gcm,
pub left: word32,
pub heap: *mut c_void,
}Fields§
§key: [word32; 60]§rounds: word32§keylen: c_int§reg: [word32; 4]§tmp: [word32; 4]§invokeCtr: [word32; 2]§nonceSz: word32§gcm: Gcm§left: word32§heap: *mut c_voidTrait 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 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