Jonathan Allen
Jonathan Allen

Reputation: 70327

Password salting in SQL Server

I have a project to start salting passwords. In order to avoid breaking our existing applications, this will require performing the hash inside a stored procedure.

Since I'm a total newbie on this topic, can you tell me where to get started.

Upvotes: 0

Views: 139

Answers (1)

Ray
Ray

Reputation: 21905

This would require a CLR function to do the hashing. Here is some info in MSDN. And here is a link for the hashing.

Upvotes: 1

Related Questions