pub trait VerificationKey {
type Plaintext;
type Signature;
// Required method
fn verify(
&self,
signature: &Self::Signature,
plaintext: &Self::Plaintext,
) -> bool;
}Expand description
The Verification key.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".