public enum ZRTPAuthTag extends java.lang.Enum<ZRTPAuthTag>
Enum Constant and Description |
---|
hs32
HS32 (HMAC-SHA1 with 32-bit tag)
|
hs80
HS80 (HMAC-SHA1 with 80-bit tag)
|
sk32
SK32 (Skein-512-Mac with 32-bit tag) NOT SUPPORTED (complicated+)
|
sk64
SK64 (Skein-512-Mac with 64-bit tag) NOT SUPPORTED (complicated+)
|
Modifier and Type | Method and Description |
---|---|
static ZRTPAuthTag |
fromInt(int i) |
static ZRTPAuthTag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZRTPAuthTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZRTPAuthTag hs32
public static final ZRTPAuthTag hs80
public static final ZRTPAuthTag sk32
public static final ZRTPAuthTag sk64
public static ZRTPAuthTag[] values()
for (ZRTPAuthTag c : ZRTPAuthTag.values()) System.out.println(c);
public static ZRTPAuthTag 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 static ZRTPAuthTag fromInt(int i)