encrypted_file_attributes.dart 161 B

12345678
  1. import 'dart:typed_data';
  2. class EncryptedFileAttributes {
  3. final Uint8List key;
  4. final Uint8List header;
  5. EncryptedFileAttributes(this.key, this.header);
  6. }