NexoDerivedKey constructor

NexoDerivedKey({
  1. required Uint8List cipherKey,
  2. required Uint8List hmacKey,
  3. required Uint8List iv,
})

Creates a new Nexo derived key.

Implementation

NexoDerivedKey({
  required this.cipherKey,
  required this.hmacKey,
  required this.iv,
});