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: SecretKeyThe secret half of this keypair.
public: PublicKeyThe public half of this keypair.