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