Package de.bsvrz.sys.funclib.srp6
Enum SRP6ServerSession.State
java.lang.Object
java.lang.Enum<SRP6ServerSession.State>
de.bsvrz.sys.funclib.srp6.SRP6ServerSession.State
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SRP6ServerSession.State>
,java.lang.constant.Constable
- Enclosing class:
- SRP6ServerSession
public static enum SRP6ServerSession.State extends java.lang.Enum<SRP6ServerSession.State>
Enumerates the states of a server-side SRP-6a authentication session.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description INIT
The session is initialised and ready to begin authentication, by proceeding toSTEP_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'. -
Method Summary
Modifier and Type Method 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.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
INIT
The session is initialised and ready to begin authentication, by proceeding toSTEP_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'. The session is ready to proceed toSTEP_2
. -
STEP_2
The client public key 'A' and evidence message 'M1' are received and the server has replied with its own evidence message 'M2'. The session is finished (authentication was successful or failed).
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-