SRP6ClientCredentials constructor

SRP6ClientCredentials(
  1. BigInt? A,
  2. BigInt? m1
)

Implementation

SRP6ClientCredentials(this.A, this.m1) {
  if (A == null) {
    throw IllegalArgumentException("The public client value 'A' must not be null");
  }

  if (m1 == null) {
    throw IllegalArgumentException("The client evidence message 'M1' must not be null");
  }
}