ente/lib/models/encryption_result.dart

16 lines
264 B
Dart
Raw Normal View History

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