Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Calculating MD5 Checksum

1.65/5 (11 votes)
25 Feb 2008CPOL 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)