ReqDHParams constructor

const ReqDHParams({
  1. required Int128 nonce,
  2. required Int128 serverNonce,
  3. required Uint8List p,
  4. required Uint8List q,
  5. required int publicKeyFingerprint,
  6. required Uint8List encryptedData,
})

Req D H Params constructor.

Implementation

const ReqDHParams({
  required this.nonce,
  required this.serverNonce,
  required this.p,
  required this.q,
  required this.publicKeyFingerprint,
  required this.encryptedData,
}) : super._();