pub trait VerificationKey {
    type Plaintext;
    type Signature;

    fn verify(
        &self,
        signature: &Self::Signature,
        plaintext: &Self::Plaintext
    ) -> bool; }
Expand description

The Verification key.

Required Associated Types

The type of the plaintext to be signed.

The type of a signature.

Required Methods

Verify the Signature on the plaintext message using the (public) Verification key.

Implementors