diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2024-09-06 21:57:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-06 21:57:35 +0200 |
| commit | bafbc2372c3e2b3530de4a7a2ac94043b5950176 (patch) | |
| tree | 5267cdd15dc2ed989ff4d5980b01069d0af96437 /MediaBrowser.Model/Cryptography/Constants.cs | |
| parent | 2b492ed8cd82651453f7d58321dc50753f2cf961 (diff) | |
| parent | e69e097e19b3b4c32dd0f6ca1ca9a562520449d7 (diff) | |
Merge pull request #12552 from Bond-009/passwordhashing
Increase password hash iterations
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; } } |
