Uses of Class
org.forgerock.json.jose.jwe.JweAlgorithm
-
Packages that use JweAlgorithm Package Description org.forgerock.http.oauth2 This package provides APIs for OAuth 2.0 services implementations.org.forgerock.json.jose.jwe Classes and interfaces for JWT encryption and JWEs.org.forgerock.json.jose.jwe.handlers.encryption Encryption Handler classes for each possible encryption algorithm.org.forgerock.json.jose.tokenhandler JWT implementation(s) ofTokenHandler
.org.forgerock.openam.secrets The AM supporting classes for centrally configuring secrets.org.forgerock.selfservice.stages.tokenhandlers This package contains some common snapshot token handler implementations. -
-
Uses of JweAlgorithm in org.forgerock.http.oauth2
Methods in org.forgerock.http.oauth2 with parameters of type JweAlgorithm Modifier and Type Method Description EncryptedPrivateKeyJwtClientAuthenticationFilter.Builder
EncryptedPrivateKeyJwtClientAuthenticationFilter.Builder. withEncryptionAlgorithm(JweAlgorithm encryptionAlgorithm)
Sets algorithm used to encrypt the private key jwt. -
Uses of JweAlgorithm in org.forgerock.json.jose.jwe
Methods in org.forgerock.json.jose.jwe that return JweAlgorithm Modifier and Type Method Description JweAlgorithm
JweHeader. getAlgorithm()
Gets the Algorithm set in the JWT header.JweAlgorithm
JweAlgorithm. getKeyWrappingAlgorithm()
For ECDH-ES key agreement modes, this indicates the key wrapping mode that should be applied to the resulting derived key.static JweAlgorithm
JweAlgorithm. parseAlgorithm(String jwaAlgorithmName)
Parses the given algorithm string to find the matching Jwe algorithm enum constant.static JweAlgorithm
JweAlgorithm. valueOf(String name)
Returns the enum constant of this type with the specified name.static JweAlgorithm[]
JweAlgorithm. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of JweAlgorithm in org.forgerock.json.jose.jwe.handlers.encryption
Methods in org.forgerock.json.jose.jwe.handlers.encryption with parameters of type JweAlgorithm Modifier and Type Method Description static ECDHEncryptionHandler
ECDHEncryptionHandler. getInstance(EncryptionHandler keyWrappingHandler, JweAlgorithm algorithm, EncryptionMethod encryptionMethod)
Get an instance of the ECDH-ES encryption handler for the given parameters.Constructors in org.forgerock.json.jose.jwe.handlers.encryption with parameters of type JweAlgorithm Constructor Description RSAEncryptionHandler(EncryptionMethod encryptionMethod, JweAlgorithm jweAlgorithm)
Constructs a new RSAEncryptionHandler instance.RSAEncryptionHandler(EncryptionMethod encryptionMethod, JweAlgorithm jweAlgorithm, Options options)
Constructs a new RSAEncryptionHandler instance with the given options. -
Uses of JweAlgorithm in org.forgerock.json.jose.tokenhandler
Constructors in org.forgerock.json.jose.tokenhandler with parameters of type JweAlgorithm Constructor Description JwtTokenHandler(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, Optional<Long> tokenLifeTimeInSeconds, int tokenStatePaddingLength)
Constructs a new JWT token handler.SecretsJwtTokenHandler(JweAlgorithm jweAlgorithm, EncryptionMethod jweMethod, JwsAlgorithm jwsAlgorithm, Optional<Long> tokenLifeTimeInSeconds, KeyPair jweKeyPair, SigningManager manager, Purpose<SigningKey> signingKeyPurpose, Purpose<VerificationKey> verificationKeyPurpose, Clock clock)
Constructs a new JWT token handler. -
Uses of JweAlgorithm in org.forgerock.openam.secrets
Methods in org.forgerock.openam.secrets with parameters of type JweAlgorithm Modifier and Type Method Description static Key
SecretsUtils. convertRawEncryptionKey(CryptoKey cryptoKey, JweAlgorithm jweAlgorithm, EncryptionMethod encryptionMethod)
Converts symmetric encryption key that was created using the RAW algorithm to a more suitable key, but only if the key material is available. -
Uses of JweAlgorithm in org.forgerock.selfservice.stages.tokenhandlers
Methods in org.forgerock.selfservice.stages.tokenhandlers that return JweAlgorithm Modifier and Type Method Description JweAlgorithm
JwtTokenHandlerConfig. getJweAlgorithm()
Gets the jwe algorithm.Methods in org.forgerock.selfservice.stages.tokenhandlers with parameters of type JweAlgorithm Modifier and Type Method Description JwtTokenHandlerConfig
JwtTokenHandlerConfig. setJweAlgorithm(JweAlgorithm jweAlgorithm)
Set the Jwe algorithm.
-