AspNetCore.Docs/aspnetcore/security/authentication/identity-configuration.md

1008 B

title uid
Configure Identity security/authentication/identity-configuration

Configure Identity

ASP.NET Core Identity has some default behaviors that you can override easily in your application's startup class.

Passwords policy

By default, Identity requires that passwords contain an uppercase character, lowercase character, and digits. There are also some other restrictions. If you want to simplify password restrictions, you can do that in the startup class of your application.

[!code-csharpMain]

Like the passwords policy, all the settings of the application's cookie can be changed in the startup class.

[!code-csharpMain]

User's lockout

[!code-csharpMain]