How can I hash a password with salt in sql server? Using any good hashing algorithm, I just want to do that stuff in Sql server.
Asked
Active
Viewed 4,399 times
1
-
Please tell us some more informations. What programming language do you use? – Benjamin Schüller Dec 01 '16 at 09:13
1 Answers
1
I don't think that you can hash the password with Sql Server. You have to do it before.
As a good hashing algorithm i would suggest an implementation of BCrypt, Scrypt or PBKDF2.
For further informations about hashing and salting you may visit https://crackstation.net/hashing-security.htm.

Benjamin Schüller
- 2,104
- 1
- 17
- 29