diff options
| author | Bond_009 <bond.009@outlook.com> | 2024-08-30 19:26:48 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2024-08-30 19:29:23 +0200 |
| commit | e69e097e19b3b4c32dd0f6ca1ca9a562520449d7 (patch) | |
| tree | 06b0f87d9d193a498f7ba047e3b307bf5c69f617 /MediaBrowser.Model/Cryptography/Constants.cs | |
| parent | 72077490447d3ff588563cc7f8aa705e1a7e9ecc (diff) | |
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
Diffstat (limited to 'MediaBrowser.Model/Cryptography/Constants.cs')
| -rw-r--r-- | MediaBrowser.Model/Cryptography/Constants.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Cryptography/Constants.cs b/MediaBrowser.Model/Cryptography/Constants.cs index f2ebb5d3d..a4cb62245 100644 --- a/MediaBrowser.Model/Cryptography/Constants.cs +++ b/MediaBrowser.Model/Cryptography/Constants.cs @@ -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; } } |
