Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / General / May 2006

Tip: Looking for answers? Try searching our database.

Need C# coding for MD5 Algorithm

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Charles - 29 May 2006 07:30 GMT
Hi all,

I need C# code for Implementing MD5 Algorithm.. Hope all would have
heard of MD5 Algorith... Does any one have the C# coding for that
Algorithm.. please Send... ITs URgent.....

Thanks In Advance to all.......................

With Regards,

Sanjay.C
John Kn [MS] - 31 May 2006 16:31 GMT
Sanjay.C,

I researched and found information on the abstract class from which all
implementations of the MD5 hash algorithm inherit using C#

I obtained this code from one our new sites:
****************************************************************************
*******************************************
using System;
using System.Security.Cryptography;
using System.Text;

class Example
{
   // Hash an input string and return the hash as
   // a 32 character hexadecimal string.
   static string getMd5Hash(string input)
   {
       // Create a new instance of the MD5CryptoServiceProvider object.
       MD5 md5Hasher = MD5.Create();

       // Convert the input string to a byte array and compute the hash.
       byte[] data =
md5Hasher.ComputeHash(Encoding.Default.GetBytes(input));

       // Create a new Stringbuilder to collect the bytes
       // and create a string.
       StringBuilder sBuilder = new StringBuilder();

       // Loop through each byte of the hashed data
       // and format each one as a hexadecimal string.
       for (int i = 0; i < data.Length; i++)
       {
           sBuilder.Append(data[i].ToString("x2"));
       }

       // Return the hexadecimal string.
       return sBuilder.ToString();
   }

   // Verify a hash against a string.
   static bool verifyMd5Hash(string input, string hash)
   {
       // Hash the input.
       string hashOfInput = getMd5Hash(input);

       // Create a StringComparer an comare the hashes.
       StringComparer comparer = StringComparer.OrdinalIgnoreCase;

       if (0 == comparer.Compare(hashOfInput, hash))
       {
           return true;
       }
       else
       {
           return false;
       }
   }

   static void Main()
   {
       string source = "Hello World!";
       
       string hash = getMd5Hash(source);

       Console.WriteLine("The MD5 hash of " + source + " is: " + hash +
".");

       Console.WriteLine("Verifying the hash...");

       if (verifyMd5Hash(source, hash))
       {
           Console.WriteLine("The hashes are the same.");
       }
       else
       {
           Console.WriteLine("The hashes are not same.");
       }
       
   }
}
// This code example produces the following output:
//
// The MD5 hash of Hello World! is: ed076287532e86365e841e92bfc50d8c.
// Verifying the hash...
// The hashes are the same.

Detailed information may be obtained from:

http://msdn2.microsoft.com/en-us/library/system.security.cryptography.md5.as
px

This is very new
--------------------
>From: "Charles" <vcharles2k@gmail.com>
>Newsgroups: microsoft.public.dotnet.general
[quoted text clipped - 7 lines]
>Content-Type: text/plain; charset="iso-8859-1"
>X-Trace: posting.google.com 1148884223 30921 127.0.0.1 (29 May 2006
06:30:23 GMT)
>X-Complaints-To: groups-abuse@google.com
>NNTP-Posting-Date: Mon, 29 May 2006 06:30:23 +0000 (UTC)
>User-Agent: G2/0.2
>X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET
CLR 1.1.4322),gzip(gfe),gzip(gfe)
>Complaints-To: groups-abuse@google.com
>Injection-Info: i40g2000cwc.googlegroups.com; posting-host=59.144.1.39;
>   posting-account=5tSGPw0AAADHdEHPpCDvBXnWgd2flHlO
>Path:
TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTFEEDS01.phx.gbl!newsfeed.c
w.net!cw.net!news-FFM2.ecrc.de!news.glorb.com!postnews.google.com!i40g2000cw
c.googlegroups.com!not-for-mail
>Xref: TK2MSFTNGXA01.phx.gbl microsoft.public.dotnet.general:196169
>X-Tomcat-NG: microsoft.public.dotnet.general
[quoted text clipped - 10 lines]
>
>Sanjay.C

{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fprq2\fcharset0
MS Sans Serif;}{\f1\fswiss\fcharset0 Arial;}}
{\*\generator Msftedit 5.41.21.2500;}\viewkind4\uc1\pard\f0\fs20 Cheers,\par
\par
johnKn [MS-SDK]\par
\par
\par
\par
-Please do not send email directly to this alias.  This alias is for \par
newsgroup purposes only\par
\par
-This posting is provided "AS IS" with no warranties, and confers no
rights.\par
\par
-To provide additional feedback about your community experience please send
\par
e-mail to: sdkcomm@microsoft.com\par
\f1\par
}

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.