Interface MemoryJarFileDecrypter


public interface MemoryJarFileDecrypter
This interface is used to decrypt each entry in the ZIP/JAR file (along with the manifest if required).
Author:
Christopher Mindus
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    decryptEntry(String path, byte[] in)
    Called to decrypt an entry by the MemoryJarFile class.
  • Method Details

    • decryptEntry

      byte[] decryptEntry(String path, byte[] in) throws IOException
      Called to decrypt an entry by the MemoryJarFile class.
      Parameters:
      path - The path of the Jar entry, null for entire Jar file.
      in - The input data for the Jar entry.
      Returns:
      A byte array containing the data, never null!
      Throws:
      IOException - For reading errors.