encrypted_data_attributes.dart 254 B

123456789
  1. import 'package:photos/models/encryption_attribute.dart';
  2. class EncryptedData {
  3. final EncryptionAttribute key;
  4. final EncryptionAttribute nonce;
  5. final EncryptionAttribute encryptedData;
  6. EncryptedData(this.key, this.nonce, this.encryptedData);
  7. }