public enum AS2EncryptionAlgorithm extends Enum<AS2EncryptionAlgorithm>
Enum Constant and Description |
---|
AES128_CBC |
AES128_CCM |
AES128_GCM |
AES192_CBC |
AES192_CCM |
AES192_GCM |
AES256_CBC |
AES256_CCM |
AES256_GCM |
CAMELLIA128_CBC |
CAMELLIA192_CBC |
CAMELLIA256_CBC |
CAST5_CBC |
DES_CBC |
DES_EDE3_CBC |
GOST28147_GCFB |
IDEA_CBC |
RC2_CBC |
RC4 |
SEED_CBC |
Modifier and Type | Method and Description |
---|---|
String |
getAlgorithmName() |
org.bouncycastle.asn1.ASN1ObjectIdentifier |
getAlgorithmOID() |
static AS2EncryptionAlgorithm |
getAS2Algorithm(String algorithmName) |
static AS2EncryptionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AS2EncryptionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AS2EncryptionAlgorithm AES128_CBC
public static final AS2EncryptionAlgorithm AES192_CBC
public static final AS2EncryptionAlgorithm AES256_CBC
public static final AS2EncryptionAlgorithm AES128_CCM
public static final AS2EncryptionAlgorithm AES192_CCM
public static final AS2EncryptionAlgorithm AES256_CCM
public static final AS2EncryptionAlgorithm AES128_GCM
public static final AS2EncryptionAlgorithm AES192_GCM
public static final AS2EncryptionAlgorithm AES256_GCM
public static final AS2EncryptionAlgorithm CAMELLIA128_CBC
public static final AS2EncryptionAlgorithm CAMELLIA192_CBC
public static final AS2EncryptionAlgorithm CAMELLIA256_CBC
public static final AS2EncryptionAlgorithm CAST5_CBC
public static final AS2EncryptionAlgorithm DES_CBC
public static final AS2EncryptionAlgorithm DES_EDE3_CBC
public static final AS2EncryptionAlgorithm GOST28147_GCFB
public static final AS2EncryptionAlgorithm IDEA_CBC
public static final AS2EncryptionAlgorithm RC2_CBC
public static final AS2EncryptionAlgorithm RC4
public static final AS2EncryptionAlgorithm SEED_CBC
public static AS2EncryptionAlgorithm[] values()
for (AS2EncryptionAlgorithm c : AS2EncryptionAlgorithm.values()) System.out.println(c);
public static AS2EncryptionAlgorithm 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 getAlgorithmName()
public org.bouncycastle.asn1.ASN1ObjectIdentifier getAlgorithmOID()
public static AS2EncryptionAlgorithm getAS2Algorithm(String algorithmName)
Apache Camel