![JAR search and dependency download from the Maven repository](/logo.png)
net.lingala.zip4j.model.enums.EncryptionMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zip4j Show documentation
Show all versions of zip4j Show documentation
An open source java library to handle zip files
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 - 2025 Weber Informatics LLC | Privacy Policy