In <[EMAIL PROTECTED]>, 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
--
http://mail.python.org/mailman/listinfo/python-list
