I developed a .net example application using the tutorial provided in
https://docs.microsoft.com/en-us/aspnet/web-api/overview/security/individual-accounts-in-web-api
In this application example, when registering a new user with a username and password, the password is encrypted and stored in the DB table. I need to know which encryption method is used by default.
Can I configure this to use any other encryption methods instead of the standard ones?
For example: if the default encryption method is SHA256, how can I configure it to use SHA512?
source
share