[][src]Struct psa_crypto_sys::psa_drv_se_t

#[repr(C)]pub struct psa_drv_se_t {
    pub hal_version: u32,
    pub persistent_data_size: usize,
    pub p_init: Option<unsafe extern "C" fn(drv_context: *mut psa_drv_se_context_t, persistent_data: *mut c_void, location: u32) -> i32>,
    pub key_management: *const psa_drv_se_key_management_t,
    pub mac: *const psa_drv_se_mac_t,
    pub cipher: *const psa_drv_se_cipher_t,
    pub aead: *const psa_drv_se_aead_t,
    pub asymmetric: *const psa_drv_se_asymmetric_t,
    pub derivation: *const psa_drv_se_key_derivation_t,
}

Fields

hal_version: u32persistent_data_size: usizep_init: Option<unsafe extern "C" fn(drv_context: *mut psa_drv_se_context_t, persistent_data: *mut c_void, location: u32) -> i32>key_management: *const psa_drv_se_key_management_tmac: *const psa_drv_se_mac_tcipher: *const psa_drv_se_cipher_taead: *const psa_drv_se_aead_tasymmetric: *const psa_drv_se_asymmetric_tderivation: *const psa_drv_se_key_derivation_t

Trait Implementations

impl Clone for psa_drv_se_t[src]

impl Copy for psa_drv_se_t[src]

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