1

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.

Ivan Starostin
  • 8,798
  • 5
  • 21
  • 39
mister_giga
  • 560
  • 1
  • 15
  • 37

1 Answers1

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