mirror of
https://github.com/ente-io/ente.git
synced 2025-05-27 13:09:56 +00:00
10 lines
182 B
Dart
10 lines
182 B
Dart
import 'dart:typed_data';
|
|
|
|
class DerivedKeyResult {
|
|
final Uint8List key;
|
|
final int memLimit;
|
|
final int opsLimit;
|
|
|
|
DerivedKeyResult(this.key, this.memLimit, this.opsLimit);
|
|
}
|