Package gnu.java.zrtp
Enum ZrtpConstants.SupportedSymCiphers
- java.lang.Object
-
- java.lang.Enum<ZrtpConstants.SupportedSymCiphers>
-
- gnu.java.zrtp.ZrtpConstants.SupportedSymCiphers
-
- All Implemented Interfaces:
Serializable,Comparable<ZrtpConstants.SupportedSymCiphers>
- Enclosing class:
- ZrtpConstants
public static enum ZrtpConstants.SupportedSymCiphers extends Enum<ZrtpConstants.SupportedSymCiphers>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ZrtpConstants.SupportedSymCiphersvalueOf(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.
-
-
-
Enum Constant Detail
-
AES3
public static final ZrtpConstants.SupportedSymCiphers AES3
-
AES1
public static final ZrtpConstants.SupportedSymCiphers AES1
-
TWO3
public static final ZrtpConstants.SupportedSymCiphers TWO3
-
TWO1
public static final ZrtpConstants.SupportedSymCiphers TWO1
-
-
Field Detail
-
name
public final byte[] name
-
keyLength
public final int keyLength
-
readable
public final String readable
-
cipher
public final org.bouncycastle.crypto.BufferedBlockCipher cipher
-
algo
public final ZrtpConstants.SupportedSymAlgos algo
-
-
Method Detail
-
values
public static ZrtpConstants.SupportedSymCiphers[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ZrtpConstants.SupportedSymCiphers c : ZrtpConstants.SupportedSymCiphers.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZrtpConstants.SupportedSymCiphers valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-