Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 field encryption/hashing ?

Author  Topic 

anvolk
Starting Member

2 Posts

Posted - 2001-12-11 : 07:34:59
How do I encrypt fields in SQL Server?
How do I calculate MD5 hash function in SQL Server?

smccreadie
Aged Yak Warrior

505 Posts

Posted - 2001-12-11 : 07:41:34
I believe if you look up encrypt in BOL, it will tell you a couple of methods. The built in encryption support for SQL is not necessarily the same between versions. Your other option is using a COM object.

Go to Top of Page

avsql
Starting Member

1 Post

Posted - 2001-12-11 : 10:09:12
I use xp_crypto(extended stored procedure).
You can download it from http://www.informnavigator.com.
It supports MD2/MD5 hash and RC2/RC4/DES/3DES crypto algorithms.

Go to Top of Page
   

- Advertisement -