GNUGradyn
Send already hashed password to backend instead of raw password with asp.net identity
seems kinda jank tho. maybe better to just rip out asp.net identity at this point, not sure its doing anything and theres already so many jank work arounds in there to get it to work exactly how i want lol
43 replies
Send already hashed password to backend instead of raw password with asp.net identity
yeah, but i dont want them to have an encryption password and an authentication password, i want it to be completely transparent to the user. this should be possible by encrypting the password before sending it and checking it against the hashed password in the database instead of sending the password and hashing it on the server
43 replies
Send already hashed password to backend instead of raw password with asp.net identity
this is basically supposed to be
1: insurance for the user that we wont touch their data (because we cant)
2: a way to skirt giving user data to malicious actors via supeonas
3: a way to make data breaches less impactful
these are all pointless if we can just intercept the users password and decrypt the data anyway
43 replies