Enum Encryption
- java.lang.Object
- 
- java.lang.Enum<Encryption>
- 
- org.apache.tomcat.util.net.openssl.ciphers.Encryption
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<Encryption>
 
 public enum Encryption extends java.lang.Enum<Encryption> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AES128AES128CCMAES128CCM8AES128GCMAES256AES256CCMAES256CCM8AES256GCMARIA128GCMARIA256GCMCAMELLIA128CAMELLIA256CHACHA20POLY1305DESeGOST2814789CNTeNULLFZAIDEARC2RC4SEEDTRIPLE_DES
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static EncryptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Encryption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
AES128public static final Encryption AES128 
 - 
AES128CCMpublic static final Encryption AES128CCM 
 - 
AES128CCM8public static final Encryption AES128CCM8 
 - 
AES128GCMpublic static final Encryption AES128GCM 
 - 
AES256public static final Encryption AES256 
 - 
AES256CCMpublic static final Encryption AES256CCM 
 - 
AES256CCM8public static final Encryption AES256CCM8 
 - 
AES256GCMpublic static final Encryption AES256GCM 
 - 
ARIA128GCMpublic static final Encryption ARIA128GCM 
 - 
ARIA256GCMpublic static final Encryption ARIA256GCM 
 - 
CAMELLIA256public static final Encryption CAMELLIA256 
 - 
CAMELLIA128public static final Encryption CAMELLIA128 
 - 
CHACHA20POLY1305public static final Encryption CHACHA20POLY1305 
 - 
TRIPLE_DESpublic static final Encryption TRIPLE_DES 
 - 
DESpublic static final Encryption DES 
 - 
IDEApublic static final Encryption IDEA 
 - 
eGOST2814789CNTpublic static final Encryption eGOST2814789CNT 
 - 
SEEDpublic static final Encryption SEED 
 - 
FZApublic static final Encryption FZA 
 - 
RC4public static final Encryption RC4 
 - 
RC2public static final Encryption RC2 
 - 
eNULLpublic static final Encryption eNULL 
 
- 
 - 
Method Detail- 
valuespublic static Encryption[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Encryption c : Encryption.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Encryption valueOf(java.lang.String name) 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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-