encrypted_data_attributes.dart 192 B

123456789
  1. import 'dart:typed_data';
  2. class EncryptedData {
  3. final Uint8List key;
  4. final Uint8List nonce;
  5. final Uint8List encryptedData;
  6. EncryptedData(this.key, this.nonce, this.encryptedData);
  7. }