Need C# Coding for MD5 Algorithm...

C

Charleees

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
 
D

Dennis Lee Bieber

Hi all,

I need C# code for Implementing MD5 Algorithm.. Hope all would have

If you want C#, why are you asking in Python?
heard of MD5 Algorith... Does any one have the C# coding for that
Algorithm.. please Send... ITs URgent.....
As for the algorithm... http://www.faqs.org/rfcs/rfc1321.html

Implement per that spec. It even includes a C-language
implementation that you might be able to bastardize into C#


--
Wulfraed Dennis Lee Bieber KD6MOG
(e-mail address removed) (e-mail address removed)
HTTP://wlfraed.home.netcom.com/
(Bestiaria Support Staff: (e-mail address removed))
HTTP://www.bestiaria.com/
 
M

Marc 'BlackJack' Rintsch

Charleees said:
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.....

There's one in `System.Security.Cryptography`, no need to implement your
own. You can get an MD5 `HashAlgorithm` object this way::

HashAlgorithm algorithm = HashAlgorithm.Create("MD5");

Ciao,
Marc 'BlackJack' Rintsch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top