encryption_result.dart 264 B

123456789101112131415
  1. import 'dart:typed_data';
  2. class EncryptionResult {
  3. final Uint8List? encryptedData;
  4. final Uint8List? key;
  5. final Uint8List? header;
  6. final Uint8List? nonce;
  7. EncryptionResult({
  8. this.encryptedData,
  9. this.key,
  10. this.header,
  11. this.nonce,
  12. });
  13. }