ente/lib/models/encryption_result.dart

11 lines
239 B
Dart
Raw Normal View History

import 'dart:typed_data';
2020-10-06 23:12:02 +00:00
class EncryptionResult {
final Uint8List encryptedData;
2020-10-06 23:17:53 +00:00
final Uint8List key;
final Uint8List header;
2020-10-06 22:58:41 +00:00
final Uint8List nonce;
2020-10-06 23:17:53 +00:00
EncryptionResult({this.encryptedData, this.key, this.header, this.nonce});
2020-10-06 22:58:41 +00:00
}