March 25, 2006 at 10:32 am
Comments posted to this topic are about the content posted at http://www.sqlservercentral.com/columnists/pressrelease/sqlserver2000encryptiontools.asp
July 7, 2009 at 10:44 am
Hi,
I am working on SQL Server 2000 and I have a table containing a password field. I have to add a new column to the table and convert all the exisiting password fileds to encripted password exploiting sha256 algorithm. CAn you help me with any stored procedure or extended stored procedure.
Thanks,
Tushar
July 7, 2009 at 11:33 am
First of all you cannot implement (without EXTREME PAIN) sha256 in a stored procedure..
With that said however, you can get an extended stored procedure that that can handle it, I found one for you at:
http://anmar.eu.org/projects/ctnhashproc/
As I see it, you create an additional column, hash the passwords into it and then delete the previous password column. Make sure that whatever you use in your apps to hash the entered password that it creates hashes that are the same, they may both be sha256 but you never know who might have screwed up..
Clear?
CEWII
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply