I have a web site using ASP.NET Web Application (.NET Framework) with individual user accounts for security. I need to import a list of users from a .csv file nightly. Reading the file and looping through each line to create an account is not problem until you get to the password. The password needs to be hashed with the identity framework. So I followed the instructions on this link to build a .net core console application. This will create the user and hash the password which looks correct but when trying to login to the website with the user the password will not work. What am I missing??? Are the passwords hashed in .Net Core differently than .Net Framework?
↧