public static enum PseudoRandomFunction.Label extends Enum<PseudoRandomFunction.Label>
| Enum Constant and Description |
|---|
CLIENT_FINISHED_LABEL |
KEY_EXPANSION_LABEL |
MASTER_SECRET_LABEL |
SERVER_FINISHED_LABEL |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getBytes() |
int |
length() |
String |
value() |
static PseudoRandomFunction.Label |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PseudoRandomFunction.Label[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PseudoRandomFunction.Label MASTER_SECRET_LABEL
public static final PseudoRandomFunction.Label KEY_EXPANSION_LABEL
public static final PseudoRandomFunction.Label CLIENT_FINISHED_LABEL
public static final PseudoRandomFunction.Label SERVER_FINISHED_LABEL
public static PseudoRandomFunction.Label[] values()
for (PseudoRandomFunction.Label c : PseudoRandomFunction.Label.values()) System.out.println(c);
public static PseudoRandomFunction.Label 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 nullpublic String value()
public byte[] getBytes()
public int length()
Copyright © 2023 Eclipse Foundation. All rights reserved.