Class SRP6ClientEvidenceContext

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

public class SRP6ClientEvidenceContext extends Object
Immutable snapshot of the SRP-6a client session variables to be used in a ClientEvidenceRoutine.
  • Field Details

    • userID

      public final String userID
      The user identity 'I'.
    • s

      public final BigInteger s
      The salt 's' used to compute the password key 'x' (and hence the verifier 'v').
    • A

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

      public final BigInteger B
      The public server value 'B'.
    • S

      public final BigInteger S
      The session key 'S'.
  • Constructor Details

    • SRP6ClientEvidenceContext

      public SRP6ClientEvidenceContext(String userID, BigInteger s, BigInteger A, BigInteger B, BigInteger S)
      Creates a new immutable snapshot of SRP-6a client session variables.
      Parameters:
      userID - The user identity 'I'.
      s - The salt 's' used to compute the password key 'x'.
      A - The public client value 'A'.
      B - The public server value 'B'.
      S - The session key 'S'.