Spake2Context constructor

Spake2Context(
  1. Spake2Role _role,
  2. Uint8List _myName,
  3. Uint8List _theirName, {
  4. Spake2RandomBytesSource? randomBytesSource,
})

Implementation

Spake2Context(
  this._role,
  this._myName,
  this._theirName, {
  Spake2RandomBytesSource? randomBytesSource,
}) : _randomBytesSource = randomBytesSource ?? _secureRandomBytes;