Trait async_signature::AsyncKeypair
source · [−]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
sourcetype VerifyingKey
type VerifyingKey
👎Deprecated since 0.2.1:
use signature::Keypair instead
Verifying key type for this keypair.
Provided Methods
sourcefn verifying_key(&self) -> &Self::VerifyingKey
fn verifying_key(&self) -> &Self::VerifyingKey
👎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.