diff --git a/aspnetcore/security/authentication/identity-configuration.md b/aspnetcore/security/authentication/identity-configuration.md index cab1980545..5410c4cd65 100644 --- a/aspnetcore/security/authentication/identity-configuration.md +++ b/aspnetcore/security/authentication/identity-configuration.md @@ -5,7 +5,7 @@ description: Understand ASP.NET Core Identity default values and learn how to co ms.author: riande monikerRange: '>= aspnetcore-3.1' ms.custom: mvc -ms.date: 2/15/2020 +ms.date: 3/09/2024 uid: security/authentication/identity-configuration --- # Configure ASP.NET Core Identity @@ -132,7 +132,7 @@ For more information, see | The compatibility mode used when hashing new passwords. Defaults to . The first byte of a hashed password, called a *format marker*, specifies the version of the hashing algorithm used to hash the password. When verifying a password against a hash, the method selects the correct algorithm based on the first byte. A client is able to authenticate regardless of which version of the algorithm was used to hash the password. Setting the compatibility mode affects the hashing of *new passwords*. | -| | The number of iterations used when hashing passwords using PBKDF2. This value is only used when the is set to . The value must be a positive integer and defaults to `10000`. | +| | The number of iterations used when hashing passwords using PBKDF2. This value is only used when the is set to . The value must be a positive integer and defaults to `100000`. | In the following example, the is set to `12000` in `Program.cs`: