pub trait NistP256Signer: Signer<Signature> {
    // Required method
    fn verifying_key(&self) -> VerifyingKey;
}
Available on crate features ecdsa and nistp256 only.
Expand description

ECDSA/NIST P-256 signer.

Required Methods§

source

fn verifying_key(&self) -> VerifyingKey

Get the ECDSA verifying key for this signer

Implementors§

source§

impl<T> NistP256Signer for Twhere T: Signer<Signature>, VerifyingKey: for<'a> From<&'a T>,