vote up 3 vote down star

Converting a couple stored procedures from MySQL to Microsoft SQL server. Everything is going well, except one procedure used the MySQL SHA1() function. I cannot seem to find an equivalent to this in MS-SQL.

Does anyone know a valid equivalent for SHA1() on MS-SQL?

flag

70% accept rate

4 Answers

vote up 10 vote down check

SQL Server 2005 and later has the HashBytes() function.

link|flag
Looks perfect, answered while I took a leak. I love stackoverflow. Thanks! – Rich B Oct 8 '08 at 19:34
Now if they'd just get support for a 256-bit algo instead of only 160 – Joel Coehoorn Oct 8 '08 at 19:41
vote up 0 vote down

These guys look like they have a solution that includes it.

link|flag
forget your link? – Joel Coehoorn Oct 8 '08 at 19:34
@Joel: Thanks, double-double-quoted it. That's what I get for spending too much time with vbscript – tloach Oct 8 '08 at 19:36
Interesting, but I like Joel's built in function. – Rich B Oct 8 '08 at 19:36
@Rich: I assumed from your question that you were looking for SHA1, not just any hash function – tloach Oct 9 '08 at 17:23
@tloach: If you follow the link, you will see there is SHA1 in the HashBytes() function. – Rich B Oct 20 '08 at 16:49
vote up 1 vote down

From google groups - A Possibility

link|flag
vote up 0 vote down

I don't believe there's native support, but you may want to check this out...

http://blogs.msdn.com/sqlcat/archive/2005/09/16/469257.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.