MCPcopy Index your code
hub / github.com/auth0/java-jwt / verify

Method verify

lib/src/main/java/com/auth0/jwt/algorithms/Algorithm.java:363–363  ·  view source on GitHub ↗

Verify the given token using this Algorithm instance. @param jwt the already decoded JWT that it's going to be verified. @throws SignatureVerificationException if the Token's Signature is invalid, meaning that it doesn't match the signatureBytes,

(DecodedJWT jwt)

Source from the content-addressed store, hash-verified

361 * or if the Key is invalid.
362 */
363 public abstract void verify(DecodedJWT jwt) throws SignatureVerificationException;
364
365 /**
366 * Sign the given content using this Algorithm instance.

Calls

no outgoing calls