public static enum CipherConstants.AOCipherBlockMode extends java.lang.Enum<CipherConstants.AOCipherBlockMode>
Enum Constant and Description |
---|
CBC
Cipher-Block Chaining (CBC).
|
CFB
Cipher FeedBack (CFB).
|
CTR
Counter (CTR).
|
ECB
Electronic CodeBook (ECB).
|
OFB
Output FeedBack (OFB).
|
PCBC
Propagating Cipher-Block Chaining (PCBC).
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Obtiene el nombre del modo de bloque.
|
static CipherConstants.AOCipherBlockMode |
getValueOf(java.lang.String blockModeName)
Recupera el modo de bloque soportado cuyo nombre se indique.
|
java.lang.String |
toString() |
static CipherConstants.AOCipherBlockMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CipherConstants.AOCipherBlockMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CipherConstants.AOCipherBlockMode ECB
public static final CipherConstants.AOCipherBlockMode CBC
public static final CipherConstants.AOCipherBlockMode PCBC
public static final CipherConstants.AOCipherBlockMode CTR
public static final CipherConstants.AOCipherBlockMode CFB
public static final CipherConstants.AOCipherBlockMode OFB
public static CipherConstants.AOCipherBlockMode[] values()
for (CipherConstants.AOCipherBlockMode c : CipherConstants.AOCipherBlockMode.values()) System.out.println(c);
public static CipherConstants.AOCipherBlockMode 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 java.lang.String getName()
public java.lang.String toString()
toString
in class java.lang.Enum<CipherConstants.AOCipherBlockMode>
public static CipherConstants.AOCipherBlockMode getValueOf(java.lang.String blockModeName)
null
.blockModeName
- Nombre del modo de bloque.