NativeDeriveKeyResult constructor

const NativeDeriveKeyResult({
  1. required String mac,
  2. required List<int> cipherText,
  3. required Uint8List leftBits,
  4. required Uint8List rightBits,
  5. required Uint8List derivedKey,
})

Implementation

const NativeDeriveKeyResult({
  required this.mac,
  required this.cipherText,
  required this.leftBits,
  required this.rightBits,
  required this.derivedKey,
});