public enum JceEncryptionKeyAlgorithm extends Enum<JceEncryptionKeyAlgorithm>
JceEncryptionKeyAlgorithmSelection. Note that the algorithm selected must
be compatible with the provided key.| Enum Constant and Description |
|---|
AES |
AESWrap |
ARCFOUR |
Blowfish |
DES |
DESede |
DESedeWrap |
RC2 |
RSA |
| Modifier and Type | Method and Description |
|---|---|
String |
getCipher() |
static JceEncryptionKeyAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JceEncryptionKeyAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JceEncryptionKeyAlgorithm AES
public static final JceEncryptionKeyAlgorithm AESWrap
public static final JceEncryptionKeyAlgorithm ARCFOUR
public static final JceEncryptionKeyAlgorithm Blowfish
public static final JceEncryptionKeyAlgorithm DES
public static final JceEncryptionKeyAlgorithm DESede
public static final JceEncryptionKeyAlgorithm RC2
public static final JceEncryptionKeyAlgorithm DESedeWrap
public static final JceEncryptionKeyAlgorithm RSA
public static JceEncryptionKeyAlgorithm[] values()
for (JceEncryptionKeyAlgorithm c : JceEncryptionKeyAlgorithm.values()) System.out.println(c);
public static JceEncryptionKeyAlgorithm 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 nullpublic String getCipher()
Copyright © 2024 MuleSoft, Inc.. All rights reserved.