[][src]Struct safe_app::AppKeys

pub struct AppKeys {
    pub app_full_id: FullId,
    pub enc_key: Key,
    pub enc_public_key: PublicKey,
    pub enc_secret_key: SecretKey,
}

Represents the needed keys to work with the data.

Fields

app_full_id: FullId

This is the identity of the App in the Network.

enc_key: Key

Data symmetric encryption key.

enc_public_key: PublicKey

Asymmetric enc public key.

enc_secret_key: SecretKey

Asymmetric enc private key.

Methods

impl AppKeys[src]

pub fn new(client_public_id: PublicId) -> AppKeys[src]

Generates random keys for the provided client.

pub fn app_safe_key(&self) -> SafeKey[src]

Converts AppKeys into an App SafeKey.

pub fn public_key(&self) -> PublicKey[src]

Returns the associated public key.

pub fn into_repr_c(self) -> Result<AppKeys, IpcError>[src]

Constructs FFI wrapper for the native Rust object, consuming self.

Trait Implementations

impl Clone for AppKeys[src]

impl Debug for AppKeys[src]

impl<'de> Deserialize<'de> for AppKeys[src]

impl Eq for AppKeys[src]

impl PartialEq<AppKeys> for AppKeys[src]

impl ReprC for AppKeys[src]

type C = *const AppKeys

C representation of the type.

type Error = IpcError

Error type.

impl Serialize for AppKeys[src]

impl StructuralEq for AppKeys[src]

impl StructuralPartialEq 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> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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>,