public enum EncryptionMode extends java.lang.Enum<EncryptionMode>
Enum Constant and Description |
---|
AES_128
AES with Counter Mode (CTR) noPadding and IV.
|
AES_CBC_IV
AES with Cipher Block Chaining Mode (CBC) and Initial Vector.
|
AES_CBC_IV_0
AES 128 with Cipher Block Chaining Mode (CBC) and dynamic key and Initial Vector with 0.
|
DES_CBC
DES with Cipher Block Chaining Mode (CBC).
|
DES_CBC_IV
DES with Cipher Block Chaining Mode (CBC) and Initial Vector.
|
NONE
No encryption.
|
RESERVED_04 |
RESERVED_06 |
RESERVED_08 |
RESERVED_09 |
RESERVED_10 |
RESERVED_11 |
RESERVED_12 |
RESERVED_14 |
RESERVED_15 |
TLS
TLS 1.2
TR-03109-1 Anlage Feinspezifikation Drahtlose LMN Schnittstelle-Teil2 Not supported yet. |
Modifier and Type | Method and Description |
---|---|
int |
getId()
Returns the ID of this EncryptionMode.
|
static EncryptionMode |
getInstance(int id)
Returns the EncryptionMode that corresponds to the given ID.
|
static EncryptionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionMode NONE
public static final EncryptionMode AES_128
public static final EncryptionMode DES_CBC
public static final EncryptionMode DES_CBC_IV
public static final EncryptionMode RESERVED_04
public static final EncryptionMode AES_CBC_IV
public static final EncryptionMode RESERVED_06
public static final EncryptionMode AES_CBC_IV_0
public static final EncryptionMode RESERVED_08
public static final EncryptionMode RESERVED_09
public static final EncryptionMode RESERVED_10
public static final EncryptionMode RESERVED_11
public static final EncryptionMode RESERVED_12
public static final EncryptionMode TLS
public static final EncryptionMode RESERVED_14
public static final EncryptionMode RESERVED_15
public static EncryptionMode[] values()
for (EncryptionMode c : EncryptionMode.values()) System.out.println(c);
public static EncryptionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getId()
public static EncryptionMode getInstance(int id)
id
- the ID