#[repr(C, align(16))]pub struct Aes {Show 13 fields
pub key: [word32; 60],
pub bs_key: [bs_word; 15360],
pub rounds: word32,
pub keylen: c_int,
pub __bindgen_padding_0: [u32; 2],
pub reg: [word32; 4],
pub tmp: [word32; 4],
pub invokeCtr: [word32; 2],
pub nonceSz: word32,
pub __bindgen_padding_1: [u64; 0],
pub gcm: Gcm,
pub use_aesni: byte,
pub heap: *mut c_void,
}Fields§
§key: [word32; 60]§bs_key: [bs_word; 15360]§rounds: word32§keylen: c_int§__bindgen_padding_0: [u32; 2]§reg: [word32; 4]§tmp: [word32; 4]§invokeCtr: [word32; 2]§nonceSz: word32§__bindgen_padding_1: [u64; 0]§gcm: Gcm§use_aesni: byte§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 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