A C D F G I J P R S V W X 

A

Algorithm - Enum in com.auth0.jwt
Supported Library Algorithms https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#KeyPairGenerator

C

com.auth0.jwt - package com.auth0.jwt
 
com.auth0.jwt.pem - package com.auth0.jwt.pem
 

D

DEFAULT_ALGORITHM - Static variable in class com.auth0.jwt.JWTSigner
 

F

findByName(String) - Static method in enum com.auth0.jwt.Algorithm
 

G

getAlgorithm() - Method in class com.auth0.jwt.JWTSigner.Options
 
getAudience() - Method in exception com.auth0.jwt.JWTAudienceException
 
getExpiration() - Method in exception com.auth0.jwt.JWTExpiredException
 
getExpirySeconds() - Method in class com.auth0.jwt.JWTSigner.Options
 
getIssuer() - Method in exception com.auth0.jwt.JWTIssuerException
 
getNotValidBeforeLeeway() - Method in class com.auth0.jwt.JWTSigner.Options
 
getValue() - Method in enum com.auth0.jwt.Algorithm
 

I

isIssuedAt() - Method in class com.auth0.jwt.JWTSigner.Options
 
isJwtId() - Method in class com.auth0.jwt.JWTSigner.Options
 

J

JWTAlgorithmException - Exception in com.auth0.jwt
Represents Exception related to Algorithm - for example JWT header algorithm is unsupported / missing
JWTAlgorithmException() - Constructor for exception com.auth0.jwt.JWTAlgorithmException
 
JWTAlgorithmException(String, Throwable) - Constructor for exception com.auth0.jwt.JWTAlgorithmException
 
JWTAlgorithmException(String) - Constructor for exception com.auth0.jwt.JWTAlgorithmException
 
JWTAudienceException - Exception in com.auth0.jwt
Represents Exception related to Audience - for example illegal audience on JWT Verification
JWTAudienceException(JsonNode) - Constructor for exception com.auth0.jwt.JWTAudienceException
 
JWTAudienceException(String, JsonNode) - Constructor for exception com.auth0.jwt.JWTAudienceException
 
JWTExpiredException - Exception in com.auth0.jwt
Represents Exception related to Expiration - for example JWT token has expired
JWTExpiredException(long) - Constructor for exception com.auth0.jwt.JWTExpiredException
 
JWTExpiredException(String, long) - Constructor for exception com.auth0.jwt.JWTExpiredException
 
JWTIssuerException - Exception in com.auth0.jwt
Represents Exception related to Issuer - for example issuer mismatch / missing upon verification
JWTIssuerException(String) - Constructor for exception com.auth0.jwt.JWTIssuerException
 
JWTIssuerException(String, String) - Constructor for exception com.auth0.jwt.JWTIssuerException
 
JWTSigner - Class in com.auth0.jwt
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(String) - Constructor for class com.auth0.jwt.JWTSigner
 
JWTSigner(byte[]) - Constructor for class com.auth0.jwt.JWTSigner
 
JWTSigner(PrivateKey) - Constructor for class com.auth0.jwt.JWTSigner
 
JWTSigner.Options - Class in com.auth0.jwt
An option object for JWT signing operation.
JWTSigner.Options() - Constructor for class com.auth0.jwt.JWTSigner.Options
 
JWTVerifier - Class in com.auth0.jwt
Handles JWT Verification Operations Validates claims and signature See associated library test cases for clear examples on usage
JWTVerifier(String, String, String) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifier(String, String) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifier(String) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifier(byte[], String) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifier(byte[]) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifier(byte[], String, String) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifier(PublicKey, String, String) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifier(PublicKey, String) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifier(PublicKey) - Constructor for class com.auth0.jwt.JWTVerifier
 
JWTVerifyException - Exception in com.auth0.jwt
Represents General Exception related to Verification
JWTVerifyException() - Constructor for exception com.auth0.jwt.JWTVerifyException
 
JWTVerifyException(String, Throwable) - Constructor for exception com.auth0.jwt.JWTVerifyException
 
JWTVerifyException(String) - Constructor for exception com.auth0.jwt.JWTVerifyException
 

P

parse(byte[]) - Static method in class com.auth0.jwt.pem.X509CertUtils
Parses a DER-encoded X.509 certificate.
parse(String) - Static method in class com.auth0.jwt.pem.X509CertUtils
Parses a PEM-encoded X.509 certificate.
PemReader - Class in com.auth0.jwt.pem
Read operations for PEM files
PemReader() - Constructor for class com.auth0.jwt.pem.PemReader
 
PemWriter - Class in com.auth0.jwt.pem
Write operations for PEM files
PemWriter() - Constructor for class com.auth0.jwt.pem.PemWriter
 

R

readPrivateKey(String) - Static method in class com.auth0.jwt.pem.PemReader
 
readPublicKey(String) - Static method in class com.auth0.jwt.pem.PemReader
 

S

setAlgorithm(Algorithm) - Method in class com.auth0.jwt.JWTSigner.Options
Algorithm to sign JWT with.
setExpirySeconds(Integer) - Method in class com.auth0.jwt.JWTSigner.Options
Set JWT claim "exp" to current timestamp plus this value.
setIssuedAt(boolean) - Method in class com.auth0.jwt.JWTSigner.Options
Set JWT claim "iat" to current timestamp.
setJwtId(boolean) - Method in class com.auth0.jwt.JWTSigner.Options
Set JWT claim "jti" to a pseudo random unique value (type 4 UUID).
setNotValidBeforeLeeway(Integer) - Method in class com.auth0.jwt.JWTSigner.Options
Set JWT claim "nbf" to current timestamp minus this value.
sign(Map<String, Object>, JWTSigner.Options) - Method in class com.auth0.jwt.JWTSigner
Generate a JSON Web Token.
sign(Map<String, Object>) - Method in class com.auth0.jwt.JWTSigner
Generate a JSON Web Token using the default algorithm HMAC SHA-256 ("HS256") and no claims automatically set.

V

valueOf(String) - Static method in enum com.auth0.jwt.Algorithm
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.auth0.jwt.Algorithm
Returns an array containing the constants of this enum type, in the order they are declared.
verify(String) - Method in class com.auth0.jwt.JWTVerifier
Performs JWT validation

W

writePemFile(Key, String, String) - Static method in class com.auth0.jwt.pem.PemWriter
 
writePrivateKey(RSAPrivateKey, String, String) - Static method in class com.auth0.jwt.pem.PemWriter
 
writePublicKey(RSAPublicKey, String, String) - Static method in class com.auth0.jwt.pem.PemWriter
 

X

X509CertUtils - Class in com.auth0.jwt.pem
X.509 certificate utilities.
X509CertUtils() - Constructor for class com.auth0.jwt.pem.X509CertUtils
 
A C D F G I J P R S V W X 

Copyright © 2016. All Rights Reserved.