pub trait VerificationAlgorithm: Debug + Sync + Sealed {
    fn verify(
        &self,
        public_key: Input<'_>,
        msg: Input<'_>,
        signature: Input<'_>
    ) -> Result<(), Unspecified>; }
Expand description

A signature verification algorithm.

Required Methods

Verify the signature signature of message msg with the public key public_key.

Implementors