15 lines
264 B
Dart
15 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,
|
|
});
|
|
}
|