In ASP.NET Core Identity, what's the best way to customize the hashing algorithm used for storing passwords?

  • Implement a custom PasswordHasher
  • Modify the Startup.cs file
  • Use a third-party library
  • Edit the appsettings.json file
The best way to customize the password hashing algorithm in ASP.NET Core Identity is by implementing a custom PasswordHasher. This allows you to have full control over the hashing process, ensuring it meets your specific security requirements.
Add your answer
Loading...

Leave a comment

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