ente/lib/models/encryption_result.dart

16 lines
296 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;
EncryptionResult({
required this.encryptedData,
required this.key,
required this.header,
required this.nonce,
});
2020-10-06 22:58:41 +00:00
}