Class SRP6ClientCredentials

java.lang.Object
de.bsvrz.sys.funclib.srp6.SRP6ClientCredentials

public final class SRP6ClientCredentials extends 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 Details

    • A

      public final BigInteger A
      The public client value 'A'.
    • M1

      public final BigInteger M1
      The client evidence message 'M1'.
  • Constructor Details

    • SRP6ClientCredentials

      public SRP6ClientCredentials(BigInteger A, BigInteger M1)
      Creates a new SRP-6a client credentials.
      Parameters:
      A - The public client value 'A'. Must not be null.
      M1 - The client evidence message 'M1'. Must not be null.