pub trait Verifier<S> {
// Required method
fn verify(&self, msg: &[u8], signature: &S) -> Result<(), Error>;
}Expand description
Verify the provided message bytestring using Self (e.g. a public key)
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".