Identity

Type Alias Identity 

Source
pub type Identity = Keypair;
Expand description

A PSEC Identity.

This is just a curve25519 keypair.

Aliased Type§

pub struct Identity {
    pub secret: SecretKey,
    pub public: PublicKey,
}

Fields§

§secret: SecretKey

The secret half of this keypair.

§public: PublicKey

The public half of this keypair.