Click here to Skip to main content
15,878,852 members
Articles / Operating Systems / Windows
Article

MD5SUM FOR C#

Rate me:
Please Sign up or sign in to vote.
3.00/5 (13 votes)
5 Jan 2005 64.9K   14   10
How to compute the same hash as MD5SUM does (HEX).

Reason For This Howto

As you may know the MD5CryptoService, which the .NET Framework uses, doesn't create an md5 sum's string. So you only have the pure byte[] which isn't that useful if you want to use it in a database or on your Web Server to compare the sum with your file's sum! So, if many people have no idea how to get their sum into the right way, here's my howto to create the same sums like "md5sum" does:

Code

This is the second version with the Hex-bug fixed.

C#
using System.Security.Cryptography;
.....
.....
string MD5SUM(byte[] FileOrText) //Output: String<-> Input: Byte[] //
{
return BitConverter.ToString(new 
    MD5CryptoServiceProvider().ComputeHash(FileOrText)).Replace("-","").ToLower();
} 

// Quite simple isn't it? I hope you enjoyed this tiny article and 
//I hope I could help ya! //

You can use this example of course for SHA1 as well, just change the MD5CryptoServiceProvider to SHA1CryptoServiceProvider.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Austria Austria
I am Max Gattringer an Austrian student - I've got a passion for programming C#, cryptograpy and nearly everything concerning PCs Big Grin | :-D

Comments and Discussions

 
GeneralAnother suggestion Pin
MrEyes5-Jan-05 23:09
MrEyes5-Jan-05 23:09 

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.