SRP6ServerSession constructor

SRP6ServerSession(
  1. SRP6CryptoParams config, {
  2. int timeout = 0,
  3. SrpState state = SrpState.init,
})

Implementation

SRP6ServerSession(final SRP6CryptoParams config,
    {final int timeout = 0, this.state = SrpState.init}) {
  this.config = config;
  state = SrpState.init;
  updateLastActivityTime();
}