public static enum XmlEncryptionDescriptor.CipherChaining extends Enum<XmlEncryptionDescriptor.CipherChaining>
Enum Constant and Description |
---|
CHAININGMODECBC |
CHAININGMODECCM |
CHAININGMODECFB |
CHAININGMODEECB |
CHAININGMODEGCM |
Modifier and Type | Method and Description |
---|---|
abstract BlockCipher |
initChainingMode(BlockCipher baseCipher) |
static XmlEncryptionDescriptor.CipherChaining |
valueOf(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(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 abstract BlockCipher initChainingMode(BlockCipher baseCipher)
Copyright © 2010–2022 OpenHMS. All rights reserved.