ente/lib/models/encryption_result.dart
2020-10-07 04:47:53 +05:30

11 lines
239 B
Dart

import 'dart:typed_data';
class EncryptionResult {
final Uint8List encryptedData;
final Uint8List key;
final Uint8List header;
final Uint8List nonce;
EncryptionResult({this.encryptedData, this.key, this.header, this.nonce});
}