Click here to Skip to main content
Licence CPOL
First Posted 23 Feb 2008
Views 24,192
Bookmarked 12 times

Calculating MD5 Checksum

By | 25 Feb 2008 | Article
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.

private static MD5 md5 = MD5.Create ( );

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

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)

About the Author

zenox

CEO
Compilr
Canada Canada

Member

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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 4 PinmemberAnkur\m/23:27 4 Oct '11  
GeneralVery helpful and simple! PinmemberThomas ST2:22 16 Apr '09  
GeneralHi Ser! Pinmembermehmet_cinci2:27 23 Feb '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 25 Feb 2008
Article Copyright 2008 by zenox
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid