Uses of Enum
org.forgerock.json.jose.jwe.JweAlgorithm
Packages that use JweAlgorithm
Package
Description
Classes and interfaces for JWT encryption and JWEs.
Encryption Handler classes for each possible encryption algorithm.
JWT implementation(s) of
TokenHandler.-
Uses of JweAlgorithm in org.forgerock.json.jose.jwe
Methods in org.forgerock.json.jose.jwe that return JweAlgorithmModifier and TypeMethodDescriptionJweHeader.getAlgorithm()Gets the Algorithm set in the JWT header.static JweAlgorithmJweAlgorithm.parseAlgorithm(String algorithm) Parses the given algorithm string to find the matching EncryptionMethod enum constant.static JweAlgorithmReturns 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
Constructors in org.forgerock.json.jose.jwe.handlers.encryption with parameters of type JweAlgorithmModifierConstructorDescriptionRSAEncryptionHandler(EncryptionMethod encryptionMethod, JweAlgorithm jweAlgorithm) Constructs a new RSAEncryptionHandler instance. -
Uses of JweAlgorithm in org.forgerock.json.jose.tokenhandler
Constructors in org.forgerock.json.jose.tokenhandler with parameters of type JweAlgorithmModifierConstructorDescriptionJwtTokenHandler(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.