Package de.bsvrz.sys.funclib.srp6
Class SRP6ServerEvidenceContext
java.lang.Object
de.bsvrz.sys.funclib.srp6.SRP6ServerEvidenceContext
public class SRP6ServerEvidenceContext
extends java.lang.Object
Immutable snapshot of SRP-6a server session variables to be used in a
ServerEvidenceRoutine
.-
Field Summary
-
Constructor Summary
Constructors Constructor Description SRP6ServerEvidenceContext(java.math.BigInteger A, java.math.BigInteger M1, java.math.BigInteger S)
Creates a new immutable snapshot of SRP-6a server session variables. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
A
public final java.math.BigInteger AThe public client value 'A'. -
M1
public final java.math.BigInteger M1The client evidence message 'M1'. -
S
public final java.math.BigInteger SThe session key 'S'.
-
-
Constructor Details
-
SRP6ServerEvidenceContext
public SRP6ServerEvidenceContext(java.math.BigInteger A, java.math.BigInteger M1, java.math.BigInteger S)Creates a new immutable snapshot of SRP-6a server session variables.- Parameters:
A
- The public client value 'A'.M1
- The client evidence message 'M1'.S
- The session key 'S'.
-