Fix: Add missing await (#368)
This commit is contained in:
parent
78b3d239eb
commit
cdc27e061b
1 changed files with 2 additions and 2 deletions
|
@ -451,9 +451,9 @@ class CryptoUtil {
|
|||
Uint8List salt,
|
||||
int memLimit,
|
||||
int opsLimit,
|
||||
) {
|
||||
) async {
|
||||
try {
|
||||
return _computer.compute(
|
||||
return await _computer.compute(
|
||||
cryptoPwHash,
|
||||
param: {
|
||||
"password": password,
|
||||
|
|
Loading…
Add table
Reference in a new issue