You're building a custom registration form for an ASP.NET Core application, and you want to ensure that users provide a strong password. Which configuration in ASP.NET Core Identity should you adjust?

  • Password Length
  • Password Complexity
  • Password Expiry
  • Password Hashing
To ensure strong passwords, you should adjust the Password Complexity configuration in ASP.NET Core Identity. This configuration allows you to specify requirements like uppercase letters, digits, special characters, etc., making passwords more secure.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *