pub trait SecretKey: Clone + Zeroize + Debug {
    type PK: PublicKey;
    fn to_public(&self) -> Self::PK;
}
Expand description

Trait represents a secret key.

Associated Types

Required methods

Derives the PublicKey corresponding to this SecretKey.

Implementors