public static enum KeyDerivationFunction.PRF_ALGORITHMS extends java.lang.Enum<KeyDerivationFunction.PRF_ALGORITHMS>
| Enum Constant and Description |
|---|
HmacSHA1 |
HmacSHA256 |
HmacSHA384 |
HmacSHA512 |
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
algName |
private short |
bits |
private byte |
value |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAlgName() |
short |
getBits() |
byte |
getValue() |
static KeyDerivationFunction.PRF_ALGORITHMS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyDerivationFunction.PRF_ALGORITHMS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyDerivationFunction.PRF_ALGORITHMS HmacSHA1
public static final KeyDerivationFunction.PRF_ALGORITHMS HmacSHA256
public static final KeyDerivationFunction.PRF_ALGORITHMS HmacSHA384
public static final KeyDerivationFunction.PRF_ALGORITHMS HmacSHA512
private final byte value
private final short bits
private final java.lang.String algName
public static KeyDerivationFunction.PRF_ALGORITHMS[] values()
for (KeyDerivationFunction.PRF_ALGORITHMS c : KeyDerivationFunction.PRF_ALGORITHMS.values()) System.out.println(c);
public static KeyDerivationFunction.PRF_ALGORITHMS 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 byte getValue()
public short getBits()
public java.lang.String getAlgName()