9 lines
182 B
Dart
9 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);
|
|
}
|