pub trait VerifyFromKey {
// Required method
fn verify(
&self,
content: String,
signature: String,
alg: Algorithm,
) -> Result<bool, Error>;
}pub trait VerifyFromKey {
// Required method
fn verify(
&self,
content: String,
signature: String,
alg: Algorithm,
) -> Result<bool, Error>;
}