Struct nettle_sys::umac128_ctx[][src]

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

Trait Implementations

impl Clone for umac128_ctx[src]

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