I have a table 'user' with the following fields:
- id
- username
- password
- salt
- folder_files
- active
The password is obtained using Rfc2898DeriveBytes. I would like to allow the user to change his password. I read the this guide:
I would like to use the GeneratePasswordResetToken. How can I use this method (and therefore also ASP.NET Identity) with che 'user' table (also maintaing the use of Rfc2898DeriveBytes for password hasing)? Can I avoid using the AspNetUsers table?