How to se 'Require strong password in ASP.NET Identity'
By FoxLearn Published on Feb 18, 2024 402
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
- Essential Tips for Securing Your ASP.NET Website
- Top Security Best Practices for ASP.NET
- Boost Your ASP.NET Core Website Performance with .NET Profiler
- The name 'Session' does not exist in the current context
- Implementing Two-Factor Authentication with Google Authenticator in ASP.NET Core
- How to securely reverse-proxy ASP.NET Core
- How to Retrieve Client IP in ASP.NET Core Behind a Reverse Proxy
- Only one parameter per action may be bound from body in ASP.NET Core
Categories
Popular Posts
11 Things You Didn't Know About Cloudflare
Dec 19, 2024
AdminKit Bootstrap 5 HTML5 UI Kits Template
Nov 17, 2024
RuangAdmin Template
Nov 13, 2024
Admin BSB Free Bootstrap Admin Dashboard
Nov 14, 2024