Class EncryptedData

java.lang.Object
com.mirth.connect.server.userutil.EncryptedData

public class EncryptedData extends Object
This object is returned from EncryptionUtil.encrypt(byte[]).
  • Constructor Details

    • EncryptedData

      public EncryptedData(String header, byte[] encryptedData)
  • Method Details

    • getHeader

      public String getHeader()
      Returns the meta-information about the encrypted data. Includes the algorithm and initialization vector used.
    • getEncryptedData

      public byte[] getEncryptedData()
      Returns the encrypted data as a byte array.