[][src]Struct safe_core::ffi::ipc::resp::AppKeys

#[repr(C)]pub struct AppKeys {
    pub full_id: *const u8,
    pub full_id_len: usize,
    pub enc_key: SymSecretKey,
    pub enc_public_key: AsymPublicKey,
    pub enc_secret_key: *const u8,
    pub enc_secret_key_len: usize,
}

Represents the needed keys to work with the data.

Fields

full_id: *const u8

Application identity.

full_id_len: usize

full_ids length

enc_key: SymSecretKey

Data symmetric encryption key.

enc_public_key: AsymPublicKey

Asymmetric enc public key.

enc_secret_key: *const u8

Pointer to serialized asymmetric encryption private key.

enc_secret_key_len: usize

Asymmetric enc private key's length.

Trait Implementations

impl Clone for AppKeys[src]

impl Drop for AppKeys[src]

Auto Trait Implementations

impl RefUnwindSafe for AppKeys

impl !Send for AppKeys

impl !Sync for AppKeys

impl Unpin for AppKeys

impl UnwindSafe for AppKeys

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> CloneAny for T where
    T: Clone + Any

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,