Struct nettle_sys::umac64_ctx[][src]

#[repr(C)]pub struct umac64_ctx {
    pub l1_key: [u32; 260],
    pub l2_key: [u32; 12],
    pub l3_key1: [u64; 16],
    pub l3_key2: [u32; 2],
    pub pdf_key: aes128_ctx,
    pub l2_state: [u64; 6],
    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; 260]l2_key: [u32; 12]l3_key1: [u64; 16]l3_key2: [u32; 2]pdf_key: aes128_ctxl2_state: [u64; 6]nonce: [u8; 16]nonce_length: c_ushortnonce_low: c_ushortpad_cache: [u32; 4]index: c_uintcount: u64block: [u8; 1024]

Trait Implementations

impl Clone for umac64_ctx[src]

impl Copy for umac64_ctx[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.