ente/auth/lib/models/encryption_result.dart
2024-03-01 12:19:20 +05:30

16 lines
264 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,
});
}