C # basic-MD5 validation

Source: Internet
Author: User

First, preface

MD5 authentication is mainly used to update the file features, the server tells the client to download which update files and provide the client with its MD5 value, the client downloads the update file from the server to the local and calculates the MD5 value of the downloaded file, and the locally received MD5 value is compared to the MD5 value provided by the server. If the same is true, the downloaded file is consistent with the file provided by the server, and if not, the file may be missing after the download and should be discarded or resumed on a breakpoint.

Second, calculate the MD5 value of the file

usingSystem.Security.Cryptography;usingSystem.Text;using(FileStream file =NewFileStream (FilePath, System.IO.FileMode.Open)) {MD5 MD5=NewMD5CryptoServiceProvider (); byte[] Yourfile =Md5.computehash (file); File.       Close (); StringBuilder FileMD5=NewStringBuilder ();  for(inti =0; i < yourfile.length; i++) {filemd5.append (Yourfile[i]. ToString ("X2")); } filemd5.tostring ();}

C # basic-MD5 validation

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.