Increase password hash iterations

It has been a while since this was last updated: https://github.com/jellyfin/jellyfin/pull/6818
Recommendations have changed since: https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html#pbkdf2
This commit is contained in:
Bond_009
2024-08-30 19:26:48 +02:00
parent 7207749044
commit e69e097e19
2 changed files with 10 additions and 3 deletions

View File

@@ -18,6 +18,6 @@ namespace MediaBrowser.Model.Cryptography
/// <summary>
/// The default amount of iterations for hashing passwords.
/// </summary>
public const int DefaultIterations = 120000;
public const int DefaultIterations = 210000;
}
}