From e69e097e19b3b4c32dd0f6ca1ca9a562520449d7 Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Fri, 30 Aug 2024 19:26:48 +0200 Subject: 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 --- MediaBrowser.Model/Cryptography/Constants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MediaBrowser.Model') diff --git a/MediaBrowser.Model/Cryptography/Constants.cs b/MediaBrowser.Model/Cryptography/Constants.cs index f2ebb5d3d1..a4cb62245e 100644 --- a/MediaBrowser.Model/Cryptography/Constants.cs +++ b/MediaBrowser.Model/Cryptography/Constants.cs @@ -18,6 +18,6 @@ namespace MediaBrowser.Model.Cryptography /// /// The default amount of iterations for hashing passwords. /// - public const int DefaultIterations = 120000; + public const int DefaultIterations = 210000; } } -- cgit v1.2.3