Struct signatory_secp256k1::EcdsaVerifier[][src]

pub struct EcdsaVerifier(_);

ECDSA verifier provider for the secp256k1 crate

Trait Implementations

impl Clone for EcdsaVerifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EcdsaVerifier
[src]

Formats the value using the given formatter. Read more

impl Eq for EcdsaVerifier
[src]

impl PartialEq for EcdsaVerifier
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> From<&'a PublicKey> for EcdsaVerifier
[src]

Performs the conversion.

impl<D> Verifier<D, Asn1Signature> for EcdsaVerifier where
    D: Digest<OutputSize = U32> + Default
[src]

Verify the signature against the given input (message or digest) using the public key this verifier was instantiated with. Read more

impl<D> DigestVerifier<D, Asn1Signature> for EcdsaVerifier where
    D: Digest<OutputSize = U32> + Default
[src]

Size of the digest output this verifier supports

impl<D> Verifier<D, FixedSignature> for EcdsaVerifier where
    D: Digest<OutputSize = U32> + Default
[src]

Verify the signature against the given input (message or digest) using the public key this verifier was instantiated with. Read more

impl<D> DigestVerifier<D, FixedSignature> for EcdsaVerifier where
    D: Digest<OutputSize = U32> + Default
[src]

Size of the digest output this verifier supports

Auto Trait Implementations