Uses of Enum
org.forgerock.json.jose.jwe.EncryptionMethod
Packages that use EncryptionMethod
Package
Description
Classes and interfaces for builder to build JWTs using a fluent API.
Classes and interfaces for JWT encryption and JWEs.
Encryption Handler classes for each possible encryption algorithm.
JWT implementation(s) of
TokenHandler
.-
Uses of EncryptionMethod in org.forgerock.json.jose.builders
Methods in org.forgerock.json.jose.builders with parameters of type EncryptionMethodModifier and TypeMethodDescriptionJweHeaderBuilder.enc
(EncryptionMethod enc) Sets the Encryption Method header parameter for this JWE. -
Uses of EncryptionMethod in org.forgerock.json.jose.jwe
Methods in org.forgerock.json.jose.jwe that return EncryptionMethodModifier and TypeMethodDescriptionJweHeader.getEncryptionMethod()
Gets the Encryption Method header parameter for this JWE.static EncryptionMethod
EncryptionMethod.parseMethod
(String method) Parses the given algorithm string to find the matching EncryptionMethod enum constant.static EncryptionMethod
Returns the enum constant of this type with the specified name.static EncryptionMethod[]
EncryptionMethod.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.forgerock.json.jose.jwe with parameters of type EncryptionMethodModifier and TypeMethodDescriptionvoid
JweHeader.setEncryptionMethod
(EncryptionMethod encryptionMethod) Sets the Encryption Method header parameter for this JWE. -
Uses of EncryptionMethod in org.forgerock.json.jose.jwe.handlers.encryption
Constructors in org.forgerock.json.jose.jwe.handlers.encryption with parameters of type EncryptionMethodModifierConstructorDescriptionConstructs an AES KeyWrap encryption handler for the given underlying content encryption method.DirectEncryptionHandler
(EncryptionMethod encryptionMethod) Constructs the direct encryption handler for the given content encryption method.RSAEncryptionHandler
(EncryptionMethod encryptionMethod, JweAlgorithm jweAlgorithm) Constructs a new RSAEncryptionHandler instance. -
Uses of EncryptionMethod in org.forgerock.json.jose.tokenhandler
Constructors in org.forgerock.json.jose.tokenhandler with parameters of type EncryptionMethodModifierConstructorDescriptionJwtTokenHandler
(JweAlgorithm jweAlgorithm, EncryptionMethod jweMethod, KeyPair jweKeyPair, JwsAlgorithm jwsAlgorithm, SigningHandler jwsHandler) Constructs a new JWT token handler that never expires.JwtTokenHandler
(JweAlgorithm jweAlgorithm, EncryptionMethod jweMethod, KeyPair jweKeyPair, JwsAlgorithm jwsAlgorithm, SigningHandler jwsHandler, org.wrensecurity.guava.common.base.Optional<Long> tokenLifeTimeInSeconds) Constructs a new JWT token handler.