Uses of Class
org.forgerock.json.jose.jwe.EncryptedJwt
-
Packages that use EncryptedJwt Package Description org.forgerock.json.jose.builders Classes and interfaces for builder to build JWTs using a fluent API.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'. -
-
Uses of EncryptedJwt in org.forgerock.json.jose.builders
Methods in org.forgerock.json.jose.builders that return EncryptedJwt Modifier and Type Method Description EncryptedJwt
EncryptedJwtBuilder. asJwt()
-
Uses of EncryptedJwt in org.forgerock.json.jose.jwe
Subclasses of EncryptedJwt in org.forgerock.json.jose.jwe Modifier and Type Class Description class
SignedThenEncryptedJwt
A nested signed-then-encrypted JWT.Methods in org.forgerock.json.jose.jwe that return EncryptedJwt Modifier and Type Method Description EncryptedJwt
EncryptedJwt. copy()
Methods in org.forgerock.json.jose.jwe that return types with arguments of type EncryptedJwt Modifier and Type Method Description Promise<? extends EncryptedJwt,JweDecryptionCheckedException>
EncryptedJwt. decrypt(SecretsProvider secretsProvider, Purpose<? extends CryptoKey> purpose)
Attempts to decrypt the JWT using any available keys for the givenPurpose
from the givenSecretsProvider
.Constructors in org.forgerock.json.jose.jwe with parameters of type EncryptedJwt Constructor Description EncryptedJwt(EncryptedJwt encryptedJwt)
Construct an encrypted JWT from an existent one.SignedThenEncryptedJwt(EncryptedJwt encryptedJwt)
Constructs a fresh signed-then-encrypted JWT from an encrypted JWT. -
Uses of EncryptedJwt in org.forgerock.json.jose.jws
Methods in org.forgerock.json.jose.jws that return EncryptedJwt Modifier and Type Method Description EncryptedJwt
EncryptedThenSignedJwt. getEncryptedJwt()
Gets the encrypted JWT.Methods in org.forgerock.json.jose.jws that return types with arguments of type EncryptedJwt Modifier and Type Method Description Promise<? extends EncryptedJwt,JweDecryptionCheckedException>
EncryptedThenSignedJwt. decrypt(SecretsProvider secretsProvider, Purpose<? extends CryptoKey> decryptionPurpose)
Decrypts the inner encrypted JWE so that the payload can be accessed.Constructors in org.forgerock.json.jose.jws with parameters of type EncryptedJwt Constructor Description EncryptedThenSignedJwt(JwsHeader header, EncryptedJwt nestedJwe, byte[] signingInput, byte[] signature)
Constructs a reconstructed SignedEncryptedJwt from its constituent parts, the JwsHeader, nested Encrypted JWT, signing input and signature.EncryptedThenSignedJwt(JwsHeader header, EncryptedJwt nestedJwe, SigningHandler signingHandler)
Constructs a fresh, new SignedEncryptedJwt from the given JwsHeader and nested Encrypted JWT.SignedEncryptedJwt(JwsHeader header, EncryptedJwt nestedJwe, byte[] signingInput, byte[] signature)
Deprecated.Constructs a reconstructed SignedEncryptedJwt from its constituent parts, the JwsHeader, nested Encrypted JWT, signing input and signature.SignedEncryptedJwt(JwsHeader header, EncryptedJwt nestedJwe, SigningHandler signingHandler)
Deprecated.Constructs a fresh, new SignedEncryptedJwt from the given JwsHeader and nested Encrypted JWT.
-