Package | Description |
---|---|
org.forgerock.json.jose.jwe |
Classes and interfaces for JWT encryption and JWEs.
|
org.forgerock.json.jose.jws |
Classes and interfaces for JWT signing and JWS'.
|
org.forgerock.json.jose.jwt |
Classes and interfaces for JWTs.
|
Modifier and Type | Class and Description |
---|---|
class |
EncryptedJwt
A JWE implementation of the
Jwt interface. |
class |
SignedThenEncryptedJwt
A nested signed-then-encrypted JWT.
|
Modifier and Type | Class and Description |
---|---|
class |
EncryptedThenSignedJwt
An implementation of a JWS with a nested JWE as its payload.
|
class |
SignedEncryptedJwt
Deprecated.
Use
EncryptedThenSignedJwt instead. |
class |
SignedJwt
A JWS implementation of the Jwt interface.
|
Modifier and Type | Method and Description |
---|---|
protected Payload |
SignedJwt.getPayload()
Gets the payload for the JWS, which will either be a JWT Claims Set,
SignedJwt.getClaimsSet() , or a nested
EncryptedJwt, EncryptedJwt . |
Constructor and Description |
---|
SignedJwt(JwsHeader header,
Payload nestedPayload,
byte[] signingInput,
byte[] signature)
Constructs a reconstructed SignedJwt from its constituent parts, the JwsHeader, nested Encrypted JWT, signing
input and signature.
|
SignedJwt(JwsHeader header,
Payload nestedPayload,
SigningHandler signingHandler)
Constructs a fresh, new SignedJwt from the given JwsHeader and nested Encrypted JWT.
|
Modifier and Type | Class and Description |
---|---|
class |
JwtClaimsSet
An implementation that holds a JWT's Claims Set.
|
Modifier and Type | Method and Description |
---|---|
Payload |
Payload.copy()
Create a copy of the current payload.
|
Copyright 2010-2022 ForgeRock AS.