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

ECDSA/NIST P-384 signer.

Required Methods§

source

fn verifying_key(&self) -> VerifyingKey

Get the ECDSA verifying key for this signer

Implementors§

source§

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