mirror of
https://github.com/ente-io/ente.git
synced 2025-06-02 07:23:39 +00:00
16 lines
264 B
Dart
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,
|
|
});
|
|
}
|