views:

24

answers:

1

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.

+1  A: 

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

Ray