public static enum XmlEncryptionDescriptor.CipherAlgorithm extends java.lang.Enum<XmlEncryptionDescriptor.CipherAlgorithm>
| Modifier and Type | Field and Description |
|---|---|
private java.lang.Class<? extends org.bouncycastle.crypto.BlockCipher> |
_blockCipherClazz |
| Modifier and Type | Method and Description |
|---|---|
org.bouncycastle.crypto.BlockCipher |
initBlockCipher() |
static XmlEncryptionDescriptor.CipherAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XmlEncryptionDescriptor.CipherAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlEncryptionDescriptor.CipherAlgorithm AES
public static final XmlEncryptionDescriptor.CipherAlgorithm RC2
public static final XmlEncryptionDescriptor.CipherAlgorithm RC4
public static final XmlEncryptionDescriptor.CipherAlgorithm DES
public static final XmlEncryptionDescriptor.CipherAlgorithm _3DES
public static final XmlEncryptionDescriptor.CipherAlgorithm _3DES112
private final java.lang.Class<? extends org.bouncycastle.crypto.BlockCipher> _blockCipherClazz
public static XmlEncryptionDescriptor.CipherAlgorithm[] values()
for (XmlEncryptionDescriptor.CipherAlgorithm c : XmlEncryptionDescriptor.CipherAlgorithm.values()) System.out.println(c);
public static XmlEncryptionDescriptor.CipherAlgorithm 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 org.bouncycastle.crypto.BlockCipher initBlockCipher()