| Class | Description |
|---|---|
| JWTSigner |
Handles JWT Sign Operation
Default algorithm when none provided is HMAC SHA-256 ("HS256")
See associated library test cases for clear examples on usage
|
| JWTSigner.Options |
An option object for JWT signing operation.
|
| JWTVerifier |
Handles JWT Verification Operations
Validates claims and signature
See associated library test cases for clear examples on usage
|
| Enum | Description |
|---|---|
| Algorithm |
Supported Library Algorithms
https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#KeyPairGenerator
|
| Exception | Description |
|---|---|
| JWTAlgorithmException |
Represents Exception related to Algorithm - for example JWT header algorithm is unsupported / missing
|
| JWTAudienceException |
Represents Exception related to Audience - for example illegal audience on JWT Verification
|
| JWTExpiredException |
Represents Exception related to Expiration - for example JWT token has expired
|
| JWTIssuerException |
Represents Exception related to Issuer - for example issuer mismatch / missing upon verification
|
| JWTVerifyException |
Represents General Exception related to Verification
|
Copyright © 2017. All Rights Reserved.