Try this |
| sri sri replied to shreya verma at 12-May-08 04:40 |
Hi, Looking in to following code for password encryption
using System.Security.Cryptography;
MD5CryptoServiceProvider md5Hasher = new MD5CryptoServiceProvider(); byte[] hashedBytes; UTF8Encoding encoder = new UTF8Encoding(); hashedBytes = md5Hasher.ComputeHash(encoder.GetBytes(strPassword)); For further information refer the below link http://www.codeproject.com/KB/database/md5sql2000.aspx
|
|