Struct safe_core::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]

[src]

Construct new ClientKeys

Trait Implementations

impl Clone for ClientKeys
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ClientKeys
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ClientKeys
[src]

[src]

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

[src]

This method tests for !=.

impl Default for ClientKeys
[src]

[src]

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

impl Into<FullId> for ClientKeys
[src]

[src]

Performs the conversion.