public interface JWTVerifier
| Modifier and Type | Method and Description |
|---|---|
DecodedJWT |
verify(DecodedJWT jwt)
Performs the verification against the given decoded JWT
|
DecodedJWT |
verify(java.lang.String token)
Performs the verification against the given Token
|
DecodedJWT verify(java.lang.String token) throws JWTVerificationException
token - to verify.JWTVerificationException - if any of the verification steps failDecodedJWT verify(DecodedJWT jwt) throws JWTVerificationException
jwt - to verify.JWTVerificationException - if any of the verification steps fail