What is the best way of storing and validating encrypted data ie Passwords?
In MySQL I used to use an encryption function using my own salt value, so I could retrieve the data for display.
This may be good for phone numbers but not passwords? How do you do this with SQL Server?
What's the recommended encryption technique for passwords? - 1-way MD5 or hash, issuing the user a challenge response to change the pw?
What if the PW needs to be retrieved - this is where the previous method I talked about may be best.
Recommendations please?
In MySQL I used to use an encryption function using my own salt value, so I could retrieve the data for display.
This may be good for phone numbers but not passwords? How do you do this with SQL Server?
What's the recommended encryption technique for passwords? - 1-way MD5 or hash, issuing the user a challenge response to change the pw?
What if the PW needs to be retrieved - this is where the previous method I talked about may be best.
Recommendations please?