public static enum SRP6ServerSession.State extends java.lang.Enum<SRP6ServerSession.State>
| Enum Constant and Description |
|---|
INIT
The session is initialised and ready to begin authentication,
by proceeding to
STEP_1. |
STEP_1
The user identity 'I' is received from the client and the
server has returned its public value 'B' based on the
matching password verifier 'v'.
|
STEP_2
The client public key 'A' and evidence message 'M1' are
received and the server has replied with its own evidence
message 'M2'.
|
| Modifier and Type | Method and Description |
|---|---|
static SRP6ServerSession.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SRP6ServerSession.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SRP6ServerSession.State INIT
STEP_1.public static final SRP6ServerSession.State STEP_1
STEP_2.public static final SRP6ServerSession.State STEP_2
public static SRP6ServerSession.State[] values()
for (SRP6ServerSession.State c : SRP6ServerSession.State.values()) System.out.println(c);
public static SRP6ServerSession.State 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 null