1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 13:38:13 -05:00

increase PasswordHasherOptions iterations to 25k

This commit is contained in:
Kyle Spearrin 2018-04-14 23:51:34 -04:00
parent ad03c9a157
commit fa198213af

View File

@ -157,6 +157,7 @@ namespace Bit.Core.Utilities
services.AddTransient<ILookupNormalizer, LowerInvariantLookupNormalizer>();
services.AddSingleton<IOrganizationDuoWebTokenProvider, OrganizationDuoWebTokenProvider>();
services.Configure<PasswordHasherOptions>(options => options.IterationCount = 25000);
services.Configure<TwoFactorRememberTokenProviderOptions>(options =>
{
options.TokenLifespan = TimeSpan.FromDays(30);