public enum EncryptionAlgorithm extends Enum<EncryptionAlgorithm>
| Enum Constant and Description |
|---|
AES128_CBC |
AES128_CCM |
AES128_GCM |
AES192_CBC |
AES192_CCM |
AES192_GCM |
AES256_CBC |
AES256_CCM |
AES256_GCM |
AES256_WRAP |
CAST5 |
DES |
DES_EDE3 |
RC2 |
UNENCRYPTED |
| Modifier and Type | Method and Description |
|---|---|
static EncryptionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionAlgorithm DES
public static final EncryptionAlgorithm DES_EDE3
public static final EncryptionAlgorithm RC2
public static final EncryptionAlgorithm AES128_CBC
public static final EncryptionAlgorithm AES192_CBC
public static final EncryptionAlgorithm AES256_CBC
public static final EncryptionAlgorithm AES128_CCM
public static final EncryptionAlgorithm AES192_CCM
public static final EncryptionAlgorithm AES256_CCM
public static final EncryptionAlgorithm AES128_GCM
public static final EncryptionAlgorithm AES192_GCM
public static final EncryptionAlgorithm AES256_GCM
public static final EncryptionAlgorithm AES256_WRAP
public static final EncryptionAlgorithm CAST5
public static final EncryptionAlgorithm UNENCRYPTED
public static EncryptionAlgorithm[] values()
for (EncryptionAlgorithm c : EncryptionAlgorithm.values()) System.out.println(c);
public static EncryptionAlgorithm valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 MuleSoft, Inc.. All rights reserved.