I need to migrate an application from asp.net to React FrontEnd with a Golang backend.
The Asp.net app is to be decommissioned so I am setting API in Golang and React for the front end.
So this leaves me with the legacy MSSQL database and the records that are existing.
This leads me to the question which is as follows;
Each user in the MSSQL database has a password hash assigned to it, I need to know how that was created so that I can recreate this in Golang. I need this so that I can validate users' passwords using Go and I can also create new users with the same hashing for consistency.
I hope that this is clear.
Thanks