encrypted_file_attributes.dart 147 B

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