All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.lingala.zip4j.model.enums.EncryptionMethod Maven / Gradle / Ivy

There is a newer version: 2.11.5
Show newest version
package net.lingala.zip4j.model.enums;

/**
 * Indicates the encryption method used in the ZIP file
 *
 */
public enum EncryptionMethod {

  /**
   * No encryption is performed 
   */
  NONE,
  /**
   * Encrypted with the weak ZIP standard algorithm 
   */
  ZIP_STANDARD,
  /**
   * Encrypted with the stronger ZIP standard algorithm 
   */
  ZIP_STANDARD_VARIANT_STRONG,
  /**
   * Encrypted with AES, the strongest choice but currently
   * cannot be expanded in Windows Explorer 
   */
  AES

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy