How to se 'Require strong password in ASP.NET Identity'
By FoxLearn 2/18/2024 1:10:50 AM 333
This post shows how to configure a require strong password in ASP.NET Identity using C#.NET.
Open your IdentityConfig.cs class, then modify your code as shown below
manager.PasswordValidator = new PasswordValidator { RequiredLength = 6, // Minimum length of the password RequireNonLetterOrDigit = true, // Must include a special character RequireDigit = true, // Must include a number RequireLowercase = true, // Must include a lowercase character RequireUppercase = true // Must include an uppercase character };
Use the PasswordValidator properties to define your own password validation policy
- Options Pattern In ASP.NET Core
- Implementing Rate Limiting in .NET
- IExceptionFilter in .NET Core
- Repository Pattern in .NET Core
- CRUD with Dapper in ASP.NET Core
- How to Implement Mediator Pattern in .NET
- How to use AutoMapper in ASP.NET Core
- How to fix 'asp-controller and asp-action attributes not working in areas'
Categories
Popular Posts
Stisla Admin Dashboard Template
11/18/2024
Admin Tailwind CSS Admin Dashboard Template
11/18/2024
Portal HTML Bootstrap
11/14/2024