pub trait Verifier: Debug {
// Required method
fn verify(
&self,
agent_info: &AgentInfo,
message: &[u8],
signature: &[u8],
) -> bool;
}Expand description
Defines a type capable of cryptographic verification.