How C # Java MD5 values remain consistent

Source: Internet
Author: User

C # Way

<summary>
Gets the string MD5.
</summary>
<param name= "MyString" ></param>
<returns></returns>
public static string GetMD5 (String myString)
{
MD5 MD5 = new MD5CryptoServiceProvider ();
byte[] Fromdata = System.Text.Encoding.UTF8.GetBytes (myString);
byte[] Targetdata = Md5.computehash (Fromdata);
string byte2string = null;

for (int i = 0; i < targetdata.length; i++)
{
Byte2string + = Targetdata[i]. ToString ("X");
}

return byte2string;
}

Java mode

public static string MD5 (string url) throws NoSuchAlgorithmException, Unsupportedencodingexception {
MessageDigest MD = messagedigest.getinstance ("MD5");
Md.update (Url.getbytes ("Utf-8"));
Byte[] result = Md.digest ();
StringBuffer sb = new StringBuffer ();
for (int i = 0; i < result.length; i++) {
int val = result[i] & 0xff;
Sb.append (Integer.tohexstring (Val));
}
return sb.tostring ();
}

The top two methods are the same as C # JAVAMD5 values.

Record it

How C # Java MD5 values remain consistent

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.