Uses of Class
org.forgerock.json.jose.jwe.JweEncryption
-
Packages that use JweEncryption Package Description org.forgerock.json.jose.jwe.handlers.encryption Encryption Handler classes for each possible encryption algorithm. -
-
Uses of JweEncryption in org.forgerock.json.jose.jwe.handlers.encryption
Methods in org.forgerock.json.jose.jwe.handlers.encryption that return JweEncryption Modifier and Type Method Description JweEncryption
AESKeyWrapEncryptionHandler. encryptPlaintext(Key contentEncryptionKey, byte[] initialisationVector, byte[] plaintext, byte[] additionalAuthenticatedData)
JweEncryption
DirectEncryptionHandler. encryptPlaintext(Key contentEncryptionKey, byte[] initialisationVector, byte[] plaintext, byte[] additionalAuthenticatedData)
JweEncryption
ECDHEncryptionHandler. encryptPlaintext(Key contentEncryptionKey, byte[] initialisationVector, byte[] plaintext, byte[] additionalAuthenticatedData)
JweEncryption
EncryptionHandler. encryptPlaintext(Key contentEncryptionKey, byte[] initialisationVector, byte[] plaintext, byte[] additionalAuthenticatedData)
Encrypts the plaintext with the Content Encryption Key, using the initialisation vector and additional authenticated data, following the steps defined by the EncryptionHandler JweAlgorithm.JweEncryption
RSAEncryptionHandler. encryptPlaintext(Key contentEncryptionKey, byte[] initialisationVector, byte[] plaintext, byte[] additionalAuthenticatedData)
Encrypts the plaintext with the Content Encryption Key, using the initialisation vector and additional authenticated data, following the steps defined by the EncryptionHandler JweAlgorithm.
-