logo
pub trait AsyncKeypair<S>: AsRef<Self::VerifyingKey>where
    S: Signature + Send + 'static,
{ type VerifyingKey; fn verifying_key(&self) -> &Self::VerifyingKey { ... } }
👎Deprecated since 0.2.1:

use signature::Keypair instead

Expand description

Keypair with async signer component and an associated verifying key.

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

Required Associated Types

👎Deprecated since 0.2.1:

use signature::Keypair instead

Verifying key type for this keypair.

Provided Methods

👎Deprecated since 0.2.1:

use signature::Keypair instead

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

Implementors