Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / C#
Article

Calculating MD5 Checksum

Rate me:
Please Sign up or sign in to vote.
1.65/5 (11 votes)
25 Feb 2008CPOL 67.2K   16   3
A C# program showing how to use the System.Security.Cryptography.MD5 class.

Introduction

I was looking for a simple way to calculate the MD5 checksum of multiple files on my computer for security reasons. Although I found programs that could do one file at a time, it would be tedious to go through all of my files. So, I wrote a simple utility that recursively checks directories and files, and outputs their MD5 checksum.

Using the code

First, you need to declare an instance of the MD5 class which can be found in the System.Security.Cryptography namespace.

C#
private static MD5 md5 = MD5.Create ( );

The main function of the program is the "CalculateChecksum" function, as seen here:

C#
private static string CalculateChecksum ( string file )
{
   using ( FileStream stream = File.OpenRead ( file ) )
   {
     byte [] checksum = md5.ComputeHash ( stream );
     return ( BitConverter.ToString ( checksum ).Replace ( "-", string.Empty );
   } // End of using fileStream
} // End of CalculateChecksum 

Points of Interest

You can see both the full code for this article as well as download the executable from here.

History

  • 1.0: Submitted this article.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO Compilr
Canada Canada
Kyle Hankinson is the Owner and Operator of the Online Compiler website Compilr (compilr.com). He enjoys programming both as a hobby and a job.

Comments and Discussions

 
GeneralMy vote of 4 Pin
Ankur\m/4-Oct-11 23:27
professionalAnkur\m/4-Oct-11 23:27 
GeneralVery helpful and simple! Pin
Thomas ST16-Apr-09 2:22
Thomas ST16-Apr-09 2:22 
GeneralHi Ser! Pin
Mehmet CINCI23-Feb-08 2:27
Mehmet CINCI23-Feb-08 2:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.