Enum Constant Summary
Enum Constants
Method Summary
All Methods Static Methods Concrete Methods
Get the EncryptionAlgorithm for an integer value
Returns the enum constant of this type with the specified name.
Returns an array containing the constants of this enum type, in
the order they are declared.
Enum Constant Details
UNKNOWN
Constant: 0x00 = 0
DES_40
Constant: 0x03 = 3
RC2_40
Constant: 0x05 = 5
RC2_128
Constant: 0x06 = 6
RC4_40
Constant: 0x08 = 8
RC4_128
Constant: 0x09 = 9
RC4_256
Constant: 0x0A = 10
AES_CBC_128
Constant: 0x0C = 12
AES_CBC_192
Constant: 0x0D = 13
AES_CBC_256
Constant: 0x0E = 14
AES_CTR_128
Constant: 0x0F = 15
AES_CTR_192
Constant: 0x10 = 16
AES_CTR_256
Constant: 0x11 = 17
AES_GCM_128
Constant: 0x12 = 18
AES_GCM_256
Constant: 0x13 = 19
AES_CCM_128
Constant: 0x14 = 20
AES_CCM_256
Constant: 0x15 = 21
AES_CCM8_128
Constant: 0x16 = 22
AES_CCM8_256
Constant: 0x17 = 23
AES_256
Constant: 0x18 = 24
BLOWFISH
Constant: 0x19 = 25
BLOWFISH_CBC
Constant: 0x1A = 26
CAST_128_CBC
Constant: 0x1B = 27
ARCFOUR_128
Constant: 0x1C = 28
ARCFOUR_256
Constant: 0x1D = 29
ARCFOUR
Constant: 0x1E = 30
RIJNDAEL_CBC
Constant: 0x1F = 31
ARIA_128_CBC
Constant: 0x21 = 33
ARIA_256_CBC
Constant: 0x22 = 34
ARIA_128_GCM
Constant: 0x23 = 35
ARIA_256_GCM
Constant: 0x24 = 36
CAMELLIA_128_CBC
Constant: 0x25 = 37
CAMELLIA_256_CBC
Constant: 0x26 = 38
CAMELLIA_128_GCM
Constant: 0x27 = 39
CAMELLIA_256_GCM
Constant: 0x28 = 40
CHACHA20_POLY1305
Constant: 0x29 = 41
IDEA_CBC
Constant: 0x2A = 42
SEED_CBC
Constant: 0x2B = 43
FORTEZZA_CBC
Constant: 0x2C = 44
GOST28147
Constant: 0x2D = 45
TWOFISH_CBC_256
Constant: 0x2E = 46
TWOFISH_CBC
Constant: 0x2F = 47
TWOFISH_CBC_192
Constant: 0x30 = 48
TWOFISH_CBC_128
Constant: 0x31 = 49
SERPENT_CBC_256
Constant: 0x32 = 50
SERPENT_CBC_192
Constant: 0x33 = 51
SERPENT_CBC_128
Constant: 0x34 = 52
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 name
NullPointerException
- if the argument is null
from
Get the EncryptionAlgorithm for an integer value
Parameters:
value
- the integer value
Returns:
the corresponding EncryptionAlgorithm