#[repr(C)]pub struct umac128_ctx {
pub l1_key: [u32; 268],
pub l2_key: [u32; 24],
pub l3_key1: [u64; 32],
pub l3_key2: [u32; 4],
pub pdf_key: aes128_ctx,
pub l2_state: [u64; 12],
pub nonce: [u8; 16],
pub nonce_length: c_ushort,
pub index: c_uint,
pub count: u64,
pub block: [u8; 1024],
}Fields§
§l1_key: [u32; 268]§l2_key: [u32; 24]§l3_key1: [u64; 32]§l3_key2: [u32; 4]§pdf_key: aes128_ctx§l2_state: [u64; 12]§nonce: [u8; 16]§nonce_length: c_ushort§index: c_uint§count: u64§block: [u8; 1024]Trait Implementations§
Source§impl Clone for umac128_ctx
impl Clone for umac128_ctx
Source§fn clone(&self) -> umac128_ctx
fn clone(&self) -> umac128_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 umac128_ctx
impl Debug for umac128_ctx
impl Copy for umac128_ctx
Auto Trait Implementations§
impl Freeze for umac128_ctx
impl RefUnwindSafe for umac128_ctx
impl Send for umac128_ctx
impl Sync for umac128_ctx
impl Unpin for umac128_ctx
impl UnwindSafe for umac128_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