We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c77a678 commit 0b02e98Copy full SHA for 0b02e98
lib/src/main/java/com/auth0/jwt/interfaces/JWTVerifier.java
@@ -2,6 +2,15 @@
2
3
import com.auth0.jwt.exceptions.JWTVerificationException;
4
5
+
6
public interface JWTVerifier {
7
8
+ /**
9
+ * Performs the verification against the given Token
10
+ *
11
+ * @param token to verify.
12
+ * @return a verified and decoded JWT.
13
+ * @throws JWTVerificationException if any of the verification steps fail
14
+ */
15
DecodedJWT verify(String token) throws JWTVerificationException;
16
}
0 commit comments