ente/lib/models/encryption_result.dart

16 lines
264 B
Dart
Raw Normal View History

2022-11-01 06:13:06 +00:00
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,
});
}