Uses of Class
net.lingala.zip4j.model.enums.AesKeyStrength
-
Packages that use AesKeyStrength Package Description net.lingala.zip4j.crypto net.lingala.zip4j.model net.lingala.zip4j.model.enums -
-
Uses of AesKeyStrength in net.lingala.zip4j.crypto
Methods in net.lingala.zip4j.crypto with parameters of type AesKeyStrength Modifier and Type Method Description static byte[]AesCipherUtil. derivePasswordBasedKey(byte[] salt, char[] password, AesKeyStrength aesKeyStrength, boolean useUtf8ForPassword)Derive Password-Based Key for AES according to AE-1 and AE-2 Specificationsstatic byte[]AesCipherUtil. derivePasswordVerifier(byte[] derivedKey, AesKeyStrength aesKeyStrength)Derive Password Verifier using Derived Key and requested AES Key Strengthstatic AESEngineAesCipherUtil. getAESEngine(byte[] derivedKey, AesKeyStrength aesKeyStrength)Get AES Engine using derived key and requested AES Key Strengthstatic MacBasedPRFAesCipherUtil. getMacBasedPRF(byte[] derivedKey, AesKeyStrength aesKeyStrength)Get MAC-Based PRF using default HMAC Algorithm defined in AE-1 and AE-2 Specificationprivate voidAESEncrypter. init(char[] password, AesKeyStrength aesKeyStrength, boolean useUtf8ForPassword)Constructors in net.lingala.zip4j.crypto with parameters of type AesKeyStrength Constructor Description AESEncrypter(char[] password, AesKeyStrength aesKeyStrength, boolean useUtf8ForPassword) -
Uses of AesKeyStrength in net.lingala.zip4j.model
Fields in net.lingala.zip4j.model declared as AesKeyStrength Modifier and Type Field Description private AesKeyStrengthAESExtraDataRecord. aesKeyStrengthprivate AesKeyStrengthZipParameters. aesKeyStrengthMethods in net.lingala.zip4j.model that return AesKeyStrength Modifier and Type Method Description AesKeyStrengthAESExtraDataRecord. getAesKeyStrength()AesKeyStrengthZipParameters. getAesKeyStrength()Get the key strength of the AES encryption keyMethods in net.lingala.zip4j.model with parameters of type AesKeyStrength Modifier and Type Method Description voidAESExtraDataRecord. setAesKeyStrength(AesKeyStrength aesKeyStrength)voidZipParameters. setAesKeyStrength(AesKeyStrength aesKeyStrength)Set the key strength of the AES encryption key -
Uses of AesKeyStrength in net.lingala.zip4j.model.enums
Methods in net.lingala.zip4j.model.enums that return AesKeyStrength Modifier and Type Method Description static AesKeyStrengthAesKeyStrength. getAesKeyStrengthFromRawCode(int code)Get a AesKeyStrength given a code from the ZIP filestatic AesKeyStrengthAesKeyStrength. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AesKeyStrength[]AesKeyStrength. values()Returns an array containing the constants of this enum type, in the order they are declared.
-