public static enum ZrtpConstants.SupportedSymCiphers extends Enum<ZrtpConstants.SupportedSymCiphers>
| Modifier and Type | Field and Description |
|---|---|
ZrtpConstants.SupportedSymAlgos |
algo |
org.bouncycastle.crypto.BufferedBlockCipher |
cipher |
int |
keyLength |
byte[] |
name |
String |
readable |
| Modifier and Type | Method and Description |
|---|---|
static ZrtpConstants.SupportedSymCiphers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZrtpConstants.SupportedSymCiphers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZrtpConstants.SupportedSymCiphers AES3
public static final ZrtpConstants.SupportedSymCiphers AES1
public static final ZrtpConstants.SupportedSymCiphers TWO3
public static final ZrtpConstants.SupportedSymCiphers TWO1
public final byte[] name
public final int keyLength
public final String readable
public final org.bouncycastle.crypto.BufferedBlockCipher cipher
public final ZrtpConstants.SupportedSymAlgos algo
public static ZrtpConstants.SupportedSymCiphers[] values()
for (ZrtpConstants.SupportedSymCiphers c : ZrtpConstants.SupportedSymCiphers.values()) System.out.println(c);
public static ZrtpConstants.SupportedSymCiphers 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 nullCopyright © 2020. All rights reserved.