Uses of Class
org.forgerock.json.jose.jwe.JweEncryption

Packages that use JweEncryption
Package
Description
Encryption Handler classes for each possible encryption algorithm.
  • Uses of JweEncryption in org.forgerock.json.jose.jwe.handlers.encryption

    Modifier and Type
    Method
    Description
    AESKeyWrapEncryptionHandler.encryptPlaintext(Key contentEncryptionKey, byte[] initialisationVector, byte[] plaintext, byte[] additionalAuthenticatedData)
     
    DirectEncryptionHandler.encryptPlaintext(Key contentEncryptionKey, byte[] initialisationVector, byte[] plaintext, byte[] additionalAuthenticatedData)
     
    ECDHEncryptionHandler.encryptPlaintext(Key contentEncryptionKey, byte[] initialisationVector, byte[] plaintext, byte[] additionalAuthenticatedData)
     
    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.
    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.