Need C# Coding for MD5 Algorithm...

Marc 'BlackJack' Rintsch bj_666 at gmx.net
Mon May 29 16:48:34 EDT 2006


In <1148884151.511656.81110 at j73g2000cwa.googlegroups.com>, Charleees
wrote:

> 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



More information about the Python-list mailing list