Class Ciphers.AesGcmDecryptor

java.lang.Object
org.apache.iceberg.encryption.Ciphers.AesGcmDecryptor
Enclosing class:
Ciphers

public static class Ciphers.AesGcmDecryptor extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
    AesGcmDecryptor(byte[] keyBytes)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    decrypt(byte[] ciphertext, byte[] aad)
     
    byte[]
    decrypt(byte[] ciphertext, int ciphertextOffset, int ciphertextLength, byte[] aad)
     
    int
    decrypt(byte[] ciphertext, int ciphertextOffset, int ciphertextLength, byte[] plaintextBuffer, int plaintextOffset, byte[] aad)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • AesGcmDecryptor

      public AesGcmDecryptor(byte[] keyBytes)
  • Method Details

    • decrypt

      public byte[] decrypt(byte[] ciphertext, byte[] aad)
    • decrypt

      public byte[] decrypt(byte[] ciphertext, int ciphertextOffset, int ciphertextLength, byte[] aad)
    • decrypt

      public int decrypt(byte[] ciphertext, int ciphertextOffset, int ciphertextLength, byte[] plaintextBuffer, int plaintextOffset, byte[] aad)