Struct nettle_sys::umac96_ctx[][src]

#[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_ctxl2_state: [u64; 9]nonce: [u8; 16]nonce_length: c_ushortindex: c_uintcount: u64block: [u8; 1024]

Trait Implementations

impl Clone for umac96_ctx[src]

impl Copy for umac96_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.