06-14-2011، 07:05 AM
کد پیاچپی:
Generate an MD5 hash of a given string
This is a snippet used to produce an MD5 hash of the string provided
کد پیاچپی:
Instructions: Need references to the following Namespaces:
System.Security.Cryptography;
System.Web.Security;
در کد زیر ساخت کد هش md5 رو در سی شارپ یاد میگیرید.
کد:
/// <summary>
/// method to generate a MD5 hash of a string
/// </summary>
/// <param name="strToHash">string to hash</param>
/// <returns>hashed string</returns>
public string GenerateMD5(string str)
{
MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
byte[] byteArray = Encoding.ASCII.GetBytes(str);
byteArray = md5.ComputeHash(byteArray);
string hashedValue = "";
foreach (byte b in byteArray)
{
hashedValue += b.ToString("x2");
}
return hashedValue;
}