Merge pull request #12552 from Bond-009/passwordhashing

Increase password hash iterations
This commit is contained in:
Niels van Velzen
2024-09-06 21:57:35 +02:00
committed by GitHub
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;
}
}