Uses of Interface
org.forgerock.json.jose.jwt.Jwt
-
Packages that use Jwt Package Description org.forgerock.jaspi.modules.session.jwt This package contains classes for the Jwt Session JASPI Authentication Module.org.forgerock.json.jose.builders Classes and interfaces for builder to build JWTs using a fluent API.org.forgerock.json.jose.common Common classes and interfaces for all types of JWTs.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.org.forgerock.oauth.resolvers This package contains classes to generate Open ID Resolvers, which can validate a supplied JWS against an Open ID Connect provider. -
-
Uses of Jwt in org.forgerock.jaspi.modules.session.jwt
Methods in org.forgerock.jaspi.modules.session.jwt that return Jwt Modifier and Type Method Description Jwt
AuthenticatedEncryptionCryptographyHandler. decryptAndVerify(JwtBuilderFactory jwtBuilderFactory, String jwt)
Jwt
FallbackJwtCryptographyHandler. decryptAndVerify(JwtBuilderFactory jwtBuilderFactory, String jwt)
default Jwt
JwtCryptographyHandler. decryptAndVerify(JwtBuilderFactory jwtBuilderFactory, String jwt)
Decrypts and verifies that the JWT is authentic in a single step.Jwt
AbstractJwtSessionModule. validateJwtSessionCookie(javax.security.auth.message.MessageInfo messageInfo)
Validates if the Jwt Session Cookie is valid and the idle timeout or max life has expired.Jwt
ServletJwtSessionModule. validateJwtSessionCookie(javax.security.auth.message.MessageInfo messageInfo)
Methods in org.forgerock.jaspi.modules.session.jwt with parameters of type Jwt Modifier and Type Method Description protected String
AbstractJwtSessionModule. rebuildEncryptedJwt(Jwt jwt)
Recreates the Encrypted Session Jwt. -
Uses of Jwt in org.forgerock.json.jose.builders
Methods in org.forgerock.json.jose.builders with type parameters of type Jwt Modifier and Type Method Description <T extends Jwt>
TJwtBuilderFactory. reconstruct(String jwtString, Class<T> jwtClass)
Reconstructs the given JWT string into a JWT object of the specified type.Methods in org.forgerock.json.jose.builders that return Jwt Modifier and Type Method Description Jwt
JwtBuilder. asJwt()
Builds the JWT object from its constituent parts. -
Uses of Jwt in org.forgerock.json.jose.common
Methods in org.forgerock.json.jose.common with type parameters of type Jwt Modifier and Type Method Description <T extends Jwt>
TJwtReconstruction. reconstructJwt(String jwtString, Class<T> jwtClass)
Reconstructs the given JWT string into a JWT object of the specified type. -
Uses of Jwt in org.forgerock.json.jose.jwe
Classes in org.forgerock.json.jose.jwe that implement Jwt Modifier and Type Class Description class
EncryptedJwt
A JWE implementation of theJwt
interface.class
SignedThenEncryptedJwt
A nested signed-then-encrypted JWT. -
Uses of Jwt in org.forgerock.json.jose.jws
Classes in org.forgerock.json.jose.jws that implement Jwt Modifier and Type Class Description class
EncryptedThenSignedJwt
An implementation of a JWS with a nested JWE as its payload.class
SignedEncryptedJwt
Deprecated.UseEncryptedThenSignedJwt
instead.class
SignedJwt
A JWS implementation of theJwt
interface. -
Uses of Jwt in org.forgerock.json.jose.jwt
Methods in org.forgerock.json.jose.jwt that return Jwt Modifier and Type Method Description Jwt
Jwt. copy()
Create a copy of the current JWT. -
Uses of Jwt in org.forgerock.oauth.resolvers
Classes in org.forgerock.oauth.resolvers with type parameters of type Jwt Modifier and Type Interface Description interface
GenericOpenIdResolver<J extends Jwt>
Validation of Open ID Connect JWTs via verification of their internals (issuer, audience, signature, etc.).
-