diff --git a/src/iOS.Extension/LockPasswordViewController.cs b/src/iOS.Extension/LockPasswordViewController.cs index a7e4e5b63..1a47a6e24 100644 --- a/src/iOS.Extension/LockPasswordViewController.cs +++ b/src/iOS.Extension/LockPasswordViewController.cs @@ -83,7 +83,8 @@ namespace Bit.iOS.Extension return; } - var key = _cryptoService.MakeKeyFromPassword(MasterPasswordCell.TextField.Text, _authService.Email); + var key = _cryptoService.MakeKeyFromPassword(MasterPasswordCell.TextField.Text, _authService.Email, + _authService.Kdf, _authService.KdfIterations); if(key.Key.SequenceEqual(_cryptoService.Key.Key)) { _appSettingsService.Locked = false;