pub trait JwtVerifier: Verifier<Vec<u8>> { // Required method fn algorithm(&self) -> Algorithm; }
Trait providing the functionality to verify a JWT.
Allows an arbitrary crypto backend to be provided.
Return the Algorithm corresponding to the signing module.
Algorithm