public static enum XmlEncryptionDescriptor.CipherChaining extends java.lang.Enum<XmlEncryptionDescriptor.CipherChaining>
| Enum Constant and Description |
|---|
CHAININGMODECBC |
CHAININGMODECCM |
CHAININGMODECFB |
CHAININGMODEECB |
CHAININGMODEGCM |
| Modifier and Type | Method and Description |
|---|---|
abstract org.bouncycastle.crypto.BlockCipher |
initChainingMode(org.bouncycastle.crypto.BlockCipher baseCipher) |
static XmlEncryptionDescriptor.CipherChaining |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XmlEncryptionDescriptor.CipherChaining[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlEncryptionDescriptor.CipherChaining CHAININGMODECBC
public static final XmlEncryptionDescriptor.CipherChaining CHAININGMODECFB
public static final XmlEncryptionDescriptor.CipherChaining CHAININGMODECCM
public static final XmlEncryptionDescriptor.CipherChaining CHAININGMODEGCM
public static final XmlEncryptionDescriptor.CipherChaining CHAININGMODEECB
public static XmlEncryptionDescriptor.CipherChaining[] values()
for (XmlEncryptionDescriptor.CipherChaining c : XmlEncryptionDescriptor.CipherChaining.values()) System.out.println(c);
public static XmlEncryptionDescriptor.CipherChaining 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 abstract org.bouncycastle.crypto.BlockCipher initChainingMode(org.bouncycastle.crypto.BlockCipher baseCipher)