logo
pub trait Keypair {
    type VerifyingKey: Clone;
    fn verifying_key(&self) -> Self::VerifyingKey;
}
Expand description

Signing keypair with an associated verifying key.

This represents a type which holds both a signing key and a verifying key.

Associated Types

Verifying key type for this keypair.

Required methods

Get the verifying key which can verify signatures produced by the signing key portion of this keypair.

Implementors