[][src]Struct opensc_sys::sm_dh_session

#[repr(C)]pub struct sm_dh_session {
    pub g: sc_tlv_data,
    pub N: sc_tlv_data,
    pub ifd_p: sc_tlv_data,
    pub ifd_y: sc_tlv_data,
    pub icc_p: sc_tlv_data,
    pub shared_secret: sc_tlv_data,
    pub session_enc: [c_uchar; 16],
    pub session_mac: [c_uchar; 16],
    pub card_challenge: [c_uchar; 32],
    pub ssc: [c_uchar; 8],
}

Fields

g: sc_tlv_dataN: sc_tlv_dataifd_p: sc_tlv_dataifd_y: sc_tlv_dataicc_p: sc_tlv_datashared_secret: sc_tlv_datasession_enc: [c_uchar; 16]session_mac: [c_uchar; 16]card_challenge: [c_uchar; 32]ssc: [c_uchar; 8]

Trait Implementations

impl Clone for sm_dh_session[src]

impl Copy for sm_dh_session[src]

impl Debug for sm_dh_session[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.