UserImportHashOptions constructor

UserImportHashOptions({
  1. required HashAlgorithmType algorithm,
  2. required Uint8List? key,
  3. required Uint8List? saltSeparator,
  4. required int? rounds,
  5. required int? memoryCost,
  6. required int? parallelization,
  7. required int? blockSize,
  8. required int? derivedKeyLength,
})

Implementation

UserImportHashOptions({
  required this.algorithm,
  required this.key,
  required this.saltSeparator,
  required this.rounds,
  required this.memoryCost,
  required this.parallelization,
  required this.blockSize,
  required this.derivedKeyLength,
});