How to se 'Require strong password in ASP.NET Identity'
By FoxLearn 2/18/2024 1:10:50 AM 260
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
- Content Negotiation in Web API
- How to fix 'InvalidOperationException: Scheme already exists: Bearer'
- How to fix System.InvalidOperationException: Scheme already exists: Identity.Application
- Add Thread ID to the Log File using Serilog
- Handling Exceptions in .NET Core API with Middleware
- InProcess Hosting in ASP.NET Core
- Limits on ThreadPool.SetMinThreads and SetMaxThreads
- Controlling DateTime Format in JSON Output with JsonSerializerOptions
Categories
Popular Posts
AdminKit Bootstrap 5 HTML5 UI Kits Template
11/17/2024
Spica Admin Dashboard Template
11/18/2024