Package de.bsvrz.sys.funclib.srp6
Class SRP6ClientCredentials
java.lang.Object
de.bsvrz.sys.funclib.srp6.SRP6ClientCredentials
public final class SRP6ClientCredentials
extends java.lang.Object
The SRP-6a client credentials sent to the server at
step two
. These consist of the public
client value 'A' and the client evidence message 'M1'.-
Field Summary
-
Constructor Summary
Constructors Constructor Description SRP6ClientCredentials(java.math.BigInteger A, java.math.BigInteger M1)
Creates a new SRP-6a client credentials. -
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'.
-
-
Constructor Details
-
SRP6ClientCredentials
public SRP6ClientCredentials(java.math.BigInteger A, java.math.BigInteger M1)Creates a new SRP-6a client credentials.- Parameters:
A
- The public client value 'A'. Must not benull
.M1
- The client evidence message 'M1'. Must not benull
.
-