JadeJWTValidator Methods
The methods defined in the JadeJWTParser class are summarized in the following table.
Method | Description |
---|---|
validateAsymmetricTokenRS | Validates the signature of an asymmetrically signed token |
validateSymmetricToken | Validates the signature of a symmetrically signed token |
verifyAlgorithmClaim | Verifies the algorithm (alg) claim of a JSON Web Token matches the specified value |
verifyAudienceClaim | Verifies the audience (aud) claim of a JSON Web Token matches the specified value |
verifyExpiryClaim | Verifies the current time is before the time specified in the expiry (exp) claim of a JSON Web Token |
verifyIssuerClaim | Verifies the issuer (iss) claim of a JSON Web Token matches the specified value |
verifyJwtIdClaim | Verifies the identifier claim of a JSON Web Token matches the specified value |
verifyMultiValueClaim | Verifies the specified claim of a JSON Web Token matches one of the specified values |
verifyNotBeforeClaim | Verifies the current time is after the time specified in the not before (nbf) claim of a JSON Web Token |
verifySingleValueClaim | Verifies the specified claim of a JSON Web Token matches the specified value |
verifySubjectClaim | Verifies the subject (sub) claim of a JSON Web Token matches the specified value |
2020.0.01 and higher