Table of Contents

Configure ASP.NET Core Identity

ASP.NET Core Identity uses default values for settings such as password policy, lockout, and cookie configuration. These settings can be overridden at application startup.

Identity options

The <xref:Microsoft.AspNetCore.Identity.IdentityOptions> class represents the options that can be used to configure the Identity system. <xref:Microsoft.AspNetCore.Identity.IdentityOptions> must be set after calling <xref:Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionExtensions.AddIdentity%2A> or <xref:Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionUIExtensions.AddDefaultIdentity%2A>.

Claims Identity

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.ClaimsIdentity?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions> with the properties shown in the following table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.RoleClaimType%2A> Gets or sets the claim type used for a role claim. <xref:System.Security.Claims.ClaimTypes.Role?displayProperty=nameWithType>
<xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.SecurityStampClaimType%2A> Gets or sets the claim type used for the security stamp claim. AspNet.Identity.SecurityStamp
<xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.UserIdClaimType%2A> Gets or sets the claim type used for the user identifier claim. <xref:System.Security.Claims.ClaimTypes.NameIdentifier?displayProperty=nameWithType>
<xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.UserNameClaimType%2A> Gets or sets the claim type used for the user name claim. <xref:System.Security.Claims.ClaimTypes.Name?displayProperty=nameWithType>

Lockout

Lockout is set in the PasswordSignInAsync method:

Warning

It looks like the sample you are looking for does not exist.

The preceding code is based on the Login Identity template.

Lockout options are set in Program.cs:

Warning

It looks like the sample you are looking for does not exist.

The preceding code sets the <xref:Microsoft.AspNetCore.Identity.IdentityOptions> <xref:Microsoft.AspNetCore.Identity.LockoutOptions> with default values.

A successful authentication resets the failed access attempts count and resets the clock.

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.Lockout%2A?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.LockoutOptions> with the properties shown in the table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.LockoutOptions.AllowedForNewUsers%2A> Determines if a new user can be locked out. true
<xref:Microsoft.AspNetCore.Identity.LockoutOptions.DefaultLockoutTimeSpan%2A> The amount of time a user is locked out when a lockout occurs. 5 minutes
<xref:Microsoft.AspNetCore.Identity.LockoutOptions.MaxFailedAccessAttempts%2A> The number of failed access attempts until a user is locked out, if lockout is enabled. 5

Password

By default, Identity requires that passwords contain an uppercase character, lowercase character, a digit, and a non-alphanumeric character. Passwords must be at least six characters long.

Passwords are configured with:

  • <xref:Microsoft.AspNetCore.Identity.PasswordOptions> in Program.cs.
  • [StringLength] attributes of Password properties if Identity is scaffolded into the app. InputModel Password properties are found in the following files:
    • Areas/Identity/Pages/Account/Register.cshtml.cs
    • Areas/Identity/Pages/Account/ResetPassword.cshtml.cs
Warning

It looks like the sample you are looking for does not exist.

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.Password%2A?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.PasswordOptions> with the properties shown in the table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequireDigit%2A> Requires a number between 0-9 in the password. true
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequiredLength%2A> The minimum length of the password. 6
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequireLowercase%2A> Requires a lowercase character in the password. true
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequireNonAlphanumeric%2A> Requires a non-alphanumeric character in the password. true
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequiredUniqueChars%2A> Only applies to ASP.NET Core 2.0 or later.

Requires the number of distinct characters in the password.
1
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequireUppercase%2A> Requires an uppercase character in the password. true

Sign-in

The following code sets SignIn settings (to default values):

Warning

It looks like the sample you are looking for does not exist.

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.SignIn?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.SignInOptions> with the properties shown in the table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedEmail%2A> Requires a confirmed email to sign in. false
<xref:Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedPhoneNumber%2A> Requires a confirmed phone number to sign in. false

Tokens

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.Tokens%2A?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.TokenOptions> with the properties shown in the table.

Property Description
<xref:Microsoft.AspNetCore.Identity.TokenOptions.AuthenticatorTokenProvider%2A> Gets or sets the AuthenticatorTokenProvider used to validate two-factor sign-ins with an authenticator.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.ChangeEmailTokenProvider%2A> Gets or sets the ChangeEmailTokenProvider used to generate tokens used in email change confirmation emails.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.ChangePhoneNumberTokenProvider%2A> Gets or sets the ChangePhoneNumberTokenProvider used to generate tokens used when changing phone numbers.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.EmailConfirmationTokenProvider%2A> Gets or sets the token provider used to generate tokens used in account confirmation emails.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.PasswordResetTokenProvider%2A> Gets or sets the <xref:Microsoft.AspNetCore.Identity.IUserTwoFactorTokenProvider%601> used to generate tokens used in password reset emails.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.ProviderMap%2A> Used to construct a User Token Provider with the key used as the provider's name.

User

Warning

It looks like the sample you are looking for does not exist.

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.User%2A?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.UserOptions> with the properties shown in the table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.UserOptions.AllowedUserNameCharacters%2A> Allowed characters in the username. abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ
0123456789
-._@+
<xref:Microsoft.AspNetCore.Identity.UserOptions.RequireUniqueEmail%2A> Requires each user to have a unique email. false

Configure the app's cookie in Program.cs. ConfigureApplicationCookie must be called after calling AddIdentity or AddDefaultIdentity.

Warning

It looks like the sample you are looking for does not exist.

For more information, see <xref:Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions>.

Password Hasher options

<xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions> gets and sets options for password hashing.

Option Description
<xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions.CompatibilityMode> The compatibility mode used when hashing new passwords. Defaults to <xref:Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode.IdentityV3>. 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 <xref:Microsoft.AspNetCore.Identity.PasswordHasher%601.VerifyHashedPassword%2A> 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.
<xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions.IterationCount> The number of iterations used when hashing passwords using PBKDF2. This value is only used when the <xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions.CompatibilityMode> is set to <xref:Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode.IdentityV3>. The value must be a positive integer and defaults to 100000.

In the following example, the <xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions.IterationCount> is set to 12000 in Program.cs:

// using Microsoft.AspNetCore.Identity;

builder.Services.Configure<PasswordHasherOptions>(option =>
{
    option.IterationCount = 12000;
});

Globally require all users to be authenticated

[!include[](~/includes/requireAuth.md)]

ISecurityStampValidator and SignOut everywhere

Apps need to react to events involving security sensitive actions by regenerating the users <xref:System.Security.Claims.ClaimsPrincipal>. For example, the ClaimsPrincipal should be regenerated when joining a role, changing the password, or other security sensitive events. Identity uses the <xref:Microsoft.AspNetCore.Identity.ISecurityStampValidator> interface to regenerate the ClaimsPrincipal. The default implementation of Identity registers a SecurityStampValidator with the main application cookie and the two-factor cookie. The validator hooks into the <xref:Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationEvents.OnValidatePrincipal> event of each cookie to call into Identity to verify that the user's security stamp claim is unchanged from what's stored in the cookie. The validator calls in at regular intervals. The call interval is a tradeoff between hitting the datastore too frequently and not often enough. Checking with a long interval results in stale claims. Call userManager.UpdateSecurityStampAsync(user)to force existing cookies to be invalided the next time they are checked. Most of the Identity UI account and manage pages call userManager.UpdateSecurityStampAsync(user) after changing the password or adding a login. Apps can call userManager.UpdateSecurityStampAsync(user) to implement a sign out everywhere action.

Changing the validation interval is shown in the following highlighted code:

ASP.NET Core Identity uses default values for settings such as password policy, lockout, and cookie configuration. These settings can be overridden in the Startup class.

Identity options

The <xref:Microsoft.AspNetCore.Identity.IdentityOptions> class represents the options that can be used to configure the Identity system. IdentityOptions must be set after calling AddIdentity or AddDefaultIdentity.

Claims Identity

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.ClaimsIdentity?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions> with the properties shown in the following table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.RoleClaimType%2A> Gets or sets the claim type used for a role claim. <xref:System.Security.Claims.ClaimTypes.Role?displayProperty=nameWithType>
<xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.SecurityStampClaimType%2A> Gets or sets the claim type used for the security stamp claim. AspNet.Identity.SecurityStamp
<xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.UserIdClaimType%2A> Gets or sets the claim type used for the user identifier claim. <xref:System.Security.Claims.ClaimTypes.NameIdentifier?displayProperty=nameWithType>
<xref:Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.UserNameClaimType%2A> Gets or sets the claim type used for the user name claim. <xref:System.Security.Claims.ClaimTypes.Name?displayProperty=nameWithType>

Lockout

Lockout is set in the PasswordSignInAsync method:

Warning

It looks like the sample you are looking for does not exist.

The preceding code is based on the Login Identity template.

Lockout options are set in StartUp.ConfigureServices:

Warning

It looks like the sample you are looking for does not exist.

The preceding code sets the <xref:Microsoft.AspNetCore.Identity.IdentityOptions> <xref:Microsoft.AspNetCore.Identity.LockoutOptions> with default values.

A successful authentication resets the failed access attempts count and resets the clock.

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.Lockout%2A?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.LockoutOptions> with the properties shown in the table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.LockoutOptions.AllowedForNewUsers%2A> Determines if a new user can be locked out. true
<xref:Microsoft.AspNetCore.Identity.LockoutOptions.DefaultLockoutTimeSpan%2A> The amount of time a user is locked out when a lockout occurs. 5 minutes
<xref:Microsoft.AspNetCore.Identity.LockoutOptions.MaxFailedAccessAttempts%2A> The number of failed access attempts until a user is locked out, if lockout is enabled. 5

Password

By default, Identity requires that passwords contain an uppercase character, lowercase character, a digit, and a non-alphanumeric character. Passwords must be at least six characters long.

Passwords are configured with:

  • <xref:Microsoft.AspNetCore.Identity.PasswordOptions> in Startup.ConfigureServices.
  • [StringLength] attributes of Password properties if Identity is scaffolded into the app. InputModel Password properties are found in the following files:
    • Areas/Identity/Pages/Account/Register.cshtml.cs
    • Areas/Identity/Pages/Account/ResetPassword.cshtml.cs
Warning

It looks like the sample you are looking for does not exist.

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.Password%2A?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.PasswordOptions> with the properties shown in the table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequireDigit%2A> Requires a number between 0-9 in the password. true
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequiredLength%2A> The minimum length of the password. 6
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequireLowercase%2A> Requires a lowercase character in the password. true
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequireNonAlphanumeric%2A> Requires a non-alphanumeric character in the password. true
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequiredUniqueChars%2A> Only applies to ASP.NET Core 2.0 or later.

Requires the number of distinct characters in the password.
1
<xref:Microsoft.AspNetCore.Identity.PasswordOptions.RequireUppercase%2A> Requires an uppercase character in the password. true

Sign-in

The following code sets SignIn settings (to default values):

Warning

It looks like the sample you are looking for does not exist.

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.SignIn?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.SignInOptions> with the properties shown in the table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedEmail%2A> Requires a confirmed email to sign in. false
<xref:Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedPhoneNumber%2A> Requires a confirmed phone number to sign in. false

Tokens

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.Tokens%2A?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.TokenOptions> with the properties shown in the table.

Property Description
<xref:Microsoft.AspNetCore.Identity.TokenOptions.AuthenticatorTokenProvider%2A> Gets or sets the AuthenticatorTokenProvider used to validate two-factor sign-ins with an authenticator.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.ChangeEmailTokenProvider%2A> Gets or sets the ChangeEmailTokenProvider used to generate tokens used in email change confirmation emails.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.ChangePhoneNumberTokenProvider%2A> Gets or sets the ChangePhoneNumberTokenProvider used to generate tokens used when changing phone numbers.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.EmailConfirmationTokenProvider%2A> Gets or sets the token provider used to generate tokens used in account confirmation emails.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.PasswordResetTokenProvider%2A> Gets or sets the <xref:Microsoft.AspNetCore.Identity.IUserTwoFactorTokenProvider%601> used to generate tokens used in password reset emails.
<xref:Microsoft.AspNetCore.Identity.TokenOptions.ProviderMap%2A> Used to construct a User Token Provider with the key used as the provider's name.

User

Warning

It looks like the sample you are looking for does not exist.

<xref:Microsoft.AspNetCore.Identity.IdentityOptions.User%2A?displayProperty=nameWithType> specifies the <xref:Microsoft.AspNetCore.Identity.UserOptions> with the properties shown in the table.

Property Description Default
<xref:Microsoft.AspNetCore.Identity.UserOptions.AllowedUserNameCharacters%2A> Allowed characters in the username. abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ
0123456789
-._@+
<xref:Microsoft.AspNetCore.Identity.UserOptions.RequireUniqueEmail%2A> Requires each user to have a unique email. false

Configure the app's cookie in Startup.ConfigureServices. ConfigureApplicationCookie must be called after calling AddIdentity or AddDefaultIdentity.

Warning

It looks like the sample you are looking for does not exist.

For more information, see <xref:Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions>.

Password Hasher options

<xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions> gets and sets options for password hashing.

Option Description
<xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions.CompatibilityMode> The compatibility mode used when hashing new passwords. Defaults to <xref:Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode.IdentityV3>. 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 <xref:Microsoft.AspNetCore.Identity.PasswordHasher%601.VerifyHashedPassword%2A> 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.
<xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions.IterationCount> The number of iterations used when hashing passwords using PBKDF2. This value is only used when the <xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions.CompatibilityMode> is set to <xref:Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode.IdentityV3>. The value must be a positive integer and defaults to 10000.

In the following example, the <xref:Microsoft.AspNetCore.Identity.PasswordHasherOptions.IterationCount> is set to 12000 in Startup.ConfigureServices:

// using Microsoft.AspNetCore.Identity;

services.Configure<PasswordHasherOptions>(option =>
{
    option.IterationCount = 12000;
});

Globally require all users to be authenticated

[!include[](~/includes/requireAuth.md)]