pbkdf2 method
Implementation
Future<Uint8List> pbkdf2({
required String hashAlgorithm,
required Uint8List password,
required Uint8List salt,
required int iterations,
required int length,
}) async {
return pbkdf2Sync(
hashAlgorithm: hashAlgorithm,
password: password,
salt: salt,
iterations: iterations,
length: length,
);
}