Package de.bsvrz.sys.funclib.srp6
Class URoutineContext
java.lang.Object
de.bsvrz.sys.funclib.srp6.URoutineContext
public class URoutineContext
extends java.lang.Object
Immutable snapshot of the SRP-6a client session variables to be used in a
URoutine
.-
Field Summary
-
Constructor Summary
Constructors Constructor Description URoutineContext(java.math.BigInteger A, java.math.BigInteger B)
Creates a new immutable snapshot of SRP-6a client session variables to be used in aURoutine
. -
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'. -
B
public final java.math.BigInteger BThe public server value 'B'.
-
-
Constructor Details
-
URoutineContext
public URoutineContext(java.math.BigInteger A, java.math.BigInteger B)Creates a new immutable snapshot of SRP-6a client session variables to be used in aURoutine
.- Parameters:
A
- The public client value 'A'.B
- The public server value 'B'.
-