pub trait JwkVerificationMethod: VerificationMethod {
// Required method
fn to_jwk(&self) -> Cow<'_, JWK>;
}
Expand description
Verification method that can be turned into a JSON Web Key.
Required Methods§
Object Safety§
This trait is not object safe.