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)
| 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. |
no outgoing calls