Computed string MD5 value under C #

Source: Internet
Author: User
Using System.Security.Cryptography;
public static string Getmd5hash (String input) {
    if (input = = null) {return
        null;
    }

    MD5 Md5hash = MD5. Create ();

    Converts the input string to a byte array and computes the hash data
    byte[] data = Md5hash.computehash (Encoding.UTF8.GetBytes (input));

    Create a Stringbuilder to collect bytes and create a string
    Stringbuilder Sbuilder = new Stringbuilder ();

    Loops through each byte of the hash data and formats it as a hexadecimal string for
    (int i = 0; i < data. Length; i++) {
        sbuilder.append (Data[i]. ToString ("X2"));
    }

    Returns a hexadecimal string return
    sbuilder.tostring ();
}

Test
Getmd5hash ("Hello, world!");
6cd3556deb0da54bca060b4c39479839

Reference: http://msdn.microsoft.com/zh-cn/library/s02tk69a (v=vs.110). aspx

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.