Class SRP6ServerEvidenceContext

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

public class SRP6ServerEvidenceContext extends Object
Immutable snapshot of SRP-6a server session variables to be used in a ServerEvidenceRoutine.
  • Field Details

    • A

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

      public final BigInteger M1
      The client evidence message 'M1'.
    • S

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

    • SRP6ServerEvidenceContext

      public SRP6ServerEvidenceContext(BigInteger A, BigInteger M1, 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'.