Uses of Interface
org.forgerock.json.jose.jwe.handlers.encryption.EncryptionHandler
-
Packages that use EncryptionHandler Package Description 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. -
-
Uses of EncryptionHandler in org.forgerock.json.jose.jwe
Methods in org.forgerock.json.jose.jwe that return EncryptionHandler Modifier and Type Method Description EncryptionHandler
EncryptionManager. getEncryptionHandler(JweHeader header)
Gets the appropriate EncryptionHandler that can perform the required encryption algorithm, as described by the JweAlgorithm and EncryptionMethod in the given JweHeader.EncryptionHandler
EncryptionManager. getEncryptionHandler(JweHeader header, Key key)
Gets the appropriate EncryptionHandler that can perform the required encryption algorithm, as described by the JweAlgorithm and EncryptionMethod in the given JweHeader. -
Uses of EncryptionHandler in org.forgerock.json.jose.jwe.handlers.encryption
Classes in org.forgerock.json.jose.jwe.handlers.encryption that implement EncryptionHandler Modifier and Type Class Description class
AbstractEncryptionHandler
Deprecated.UseContentEncryptionHandler
instead.class
AESKeyWrapEncryptionHandler
Provides JWE key encapsulation using the AES KeyWrap algorithm.class
DirectEncryptionHandler
Supports direct encryption using a shared symmetric key.class
ECDHEncryptionHandler
Implements Elliptic Curve Diffie-Hellman (ECDH) key agreement in ephemeral-static (ECDH-ES) mode.class
RSA15AES128CBCHS256EncryptionHandler
Deprecated.UseRSAEncryptionHandler
andAESCBCHMACSHA2ContentEncryptionHandler
instead.class
RSA15AES256CBCHS512EncryptionHandler
Deprecated.UseRSAEncryptionHandler
andAESCBCHMACSHA2ContentEncryptionHandler
instead.class
RSAEncryptionHandler
Abstract base class for implementations of the RSAES-PKCS1-v1_5 and RSA-OAEP encryption schemes.Methods in org.forgerock.json.jose.jwe.handlers.encryption with parameters of type EncryptionHandler 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.
-