About MD5 value encryption algorithm

Source: Internet
Author: User
Tags md5 encryption

public static string getMD5 (String str)//The method that gets the string MD5 encryption is typically used to validate the data
{
System.Security.Cryptography.MD5CryptoServiceProvider MD5 = new System.Security.Cryptography.MD5CryptoServiceProvider ();
byte[] pwd = Md5.computehash (Encoding.ASCII.GetBytes (str));
string ret = "";
for (int i = 0; i < pwd. Length; i++)
{
RET + = Pwd[i]. ToString ("X");
}
return ret;
}
private static string Getmd5hashfromfile (String fileName)//the method used to obtain the file MD5 encryption is used to determine whether the client file has been tampered with
{
Try
{
FileStream file = new FileStream (FileName, FileMode.Open);
System.Security.Cryptography.MD5 MD5 = new System.Security.Cryptography.MD5CryptoServiceProvider ();
byte[] RetVal = md5.computehash (file);
File. Close ();


StringBuilder sb = new StringBuilder ();
for (int i = 0; i < retval.length; i++)
{
Sb. Append (Retval[i]. ToString ("X2"));
Sb. Append (Retval[i]. ToString ("X"));
}
Return SB. ToString ();
}
catch (Exception ex)
{
throw new Exception ("Getmd5hashfromfile () Fail,error:" + ex. Message);
}
}

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

About MD5 value encryption algorithm

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.