diff --git a/src/Core/Services/SendService.cs b/src/Core/Services/SendService.cs index 6f04c8e15..af9c586f3 100644 --- a/src/Core/Services/SendService.cs +++ b/src/Core/Services/SendService.cs @@ -102,9 +102,8 @@ namespace Bit.Core.Services if (password != null) { - var kdfIterations = await _userService.GetKdfIterationsAsync() ?? 100000; var passwordHash = await _cryptoFunctionService.Pbkdf2Async(password, model.Key, - CryptoHashAlgorithm.Sha256, kdfIterations); + CryptoHashAlgorithm.Sha256, 100000); send.Password = Convert.ToBase64String(passwordHash); }