#[repr(C)]pub struct umac96_ctx {
pub l1_key: [u32; 264],
pub l2_key: [u32; 18],
pub l3_key1: [u64; 24],
pub l3_key2: [u32; 3],
pub pdf_key: aes128_ctx,
pub l2_state: [u64; 9],
pub nonce: [u8; 16],
pub nonce_length: c_ushort,
pub index: c_uint,
pub count: u64,
pub block: [u8; 1024],
}Fields§
§l1_key: [u32; 264]§l2_key: [u32; 18]§l3_key1: [u64; 24]§l3_key2: [u32; 3]§pdf_key: aes128_ctx§l2_state: [u64; 9]§nonce: [u8; 16]§nonce_length: c_ushort§index: c_uint§count: u64§block: [u8; 1024]Trait Implementations§
Source§impl Clone for umac96_ctx
impl Clone for umac96_ctx
Source§fn clone(&self) -> umac96_ctx
fn clone(&self) -> umac96_ctx
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for umac96_ctx
impl Debug for umac96_ctx
impl Copy for umac96_ctx
Auto Trait Implementations§
impl Freeze for umac96_ctx
impl RefUnwindSafe for umac96_ctx
impl Send for umac96_ctx
impl Sync for umac96_ctx
impl Unpin for umac96_ctx
impl UnwindSafe for umac96_ctx
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