Parsi Coders

نسخه‌ی کامل: Generate an MD5 hash of a given string
شما در حال مشاهده نسخه آرشیو هستید. برای مشاهده نسخه کامل کلیک کنید.
کد پی‌اچ‌پی:
Generate an MD5 hash of a given string
This is a snippet used to produce an MD5 hash of the string provided 

کد پی‌اچ‌پی:
InstructionsNeed 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;
}