Struct nettle_sys::umac32_ctx
source · #[repr(C)]pub struct umac32_ctx {Show 13 fields
pub l1_key: [u32; 256],
pub l2_key: [u32; 6],
pub l3_key1: [u64; 8],
pub l3_key2: [u32; 1],
pub pdf_key: aes128_ctx,
pub l2_state: [u64; 3],
pub nonce: [u8; 16],
pub nonce_length: c_ushort,
pub nonce_low: c_ushort,
pub pad_cache: [u32; 4],
pub index: c_uint,
pub count: u64,
pub block: [u8; 1024],
}
Fields§
§l1_key: [u32; 256]
§l2_key: [u32; 6]
§l3_key1: [u64; 8]
§l3_key2: [u32; 1]
§pdf_key: aes128_ctx
§l2_state: [u64; 3]
§nonce: [u8; 16]
§nonce_length: c_ushort
§nonce_low: c_ushort
§pad_cache: [u32; 4]
§index: c_uint
§count: u64
§block: [u8; 1024]
Trait Implementations§
source§impl Clone for umac32_ctx
impl Clone for umac32_ctx
source§fn clone(&self) -> umac32_ctx
fn clone(&self) -> umac32_ctx
Returns a copy 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 umac32_ctx
impl Debug for umac32_ctx
impl Copy for umac32_ctx
Auto Trait Implementations§
impl RefUnwindSafe for umac32_ctx
impl Send for umac32_ctx
impl Sync for umac32_ctx
impl Unpin for umac32_ctx
impl UnwindSafe for umac32_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