Enum PKWareExtraHeader.EncryptionAlgorithm
java.lang.Object
java.lang.Enum<PKWareExtraHeader.EncryptionAlgorithm>
org.apache.commons.compress.archivers.zip.PKWareExtraHeader.EncryptionAlgorithm
- All Implemented Interfaces:
Serializable
,Comparable<PKWareExtraHeader.EncryptionAlgorithm>
- Enclosing class:
PKWareExtraHeader
public static enum PKWareExtraHeader.EncryptionAlgorithm
extends Enum<PKWareExtraHeader.EncryptionAlgorithm>
Enumerates encryption algorithm.
- Since:
- 1.11
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAES128 with code 0x660E.AES192 with code 0x660F.AES256 with code 0x6610.DES with code 0x6601.RC2 with code 0x6702.RC2pre52 with code 0x6602.RC4 with code 0x6801.TripleDES168 with code 0x6603.TripleDES192 with code 0x6609.UNKNOWN with code 0xFFFF. -
Method Summary
Modifier and TypeMethodDescriptiongetAlgorithmByCode
(int code) Returns the EncryptionAlgorithm for the given code or null if the method is not known.int
getCode()
Gets the algorithm ID.Returns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DES
DES with code 0x6601. -
RC2pre52
RC2pre52 with code 0x6602. -
TripleDES168
TripleDES168 with code 0x6603. -
TripleDES192
TripleDES192 with code 0x6609. -
AES128
AES128 with code 0x660E. -
AES192
AES192 with code 0x660F. -
AES256
AES256 with code 0x6610. -
RC2
RC2 with code 0x6702. -
RC4
RC4 with code 0x6801. -
UNKNOWN
UNKNOWN with code 0xFFFF.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getAlgorithmByCode
Returns the EncryptionAlgorithm for the given code or null if the method is not known.- Parameters:
code
- the code of the algorithm- Returns:
- the EncryptionAlgorithm for the given code or null if the method is not known
-
getCode
Gets the algorithm ID.- Returns:
- the PKWare AlgorithmId
-