Struct safe_app::ClientKeys[][src]

pub struct ClientKeys {
    pub sign_pk: PublicKey,
    pub sign_sk: SecretKey,
    pub enc_pk: PublicKey,
    pub enc_sk: SecretKey,
    pub enc_key: Key,
}

Client signing and encryption keypairs

Fields

Signing public key

Signing secret key

Encryption public key

Encryption private key

Symmetric encryption key

Methods

impl ClientKeys
[src]

Construct new ClientKeys

Trait Implementations

impl Into<FullId> for ClientKeys
[src]

Performs the conversion.

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

Deserialize this value from the given Serde deserializer. Read more

impl Clone for ClientKeys
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ClientKeys
[src]

Returns the "default value" for a type. Read more

impl Debug for ClientKeys
[src]

Formats the value using the given formatter. Read more

impl PartialEq<ClientKeys> for ClientKeys
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Serialize for ClientKeys
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl Send for ClientKeys

impl Sync for ClientKeys