0

Please or Register to create posts and topics.

How to hash a password manually?

I'm migrating tens of thousands of emails and contact info into this new web application I'm building.  Originally, the previous sight used some kind of SSO so no passwords were stored.

 

Instead of doing that because I didn't know how, I was going to set a generic password and have the users reset their password when they log in.  How would I go about hashing a password?  I tried using the HashPassword(user, password) and it would not work..

Can someone point me to a resource or tell me what method can be used to actually hash a password? I'm assuming its Identity V3 Hashing?

I'm using the Asp.Net Core 2.1 version of QuickApp

 

Thanks!