Need C# Coding for MD5 Algorithm...

2006-05-29 Thread 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 --

Re: Need C# Coding for MD5 Algorithm...

2006-05-29 Thread Ravi Teja
I need C# code for Implementing MD5 Algorithm. So ask in a C# group. Python's is here http://docs.python.org/lib/module-md5.html please Send... ITs URgent http://www.catb.org/~esr/faqs/smart-questions.html#urgent -- http://mail.python.org/mailman/listinfo/python-list

Re: Need C# Coding for MD5 Algorithm...

2006-05-29 Thread Marc 'BlackJack' Rintsch
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.

Re: Need C# Coding for MD5 Algorithm...

2006-05-29 Thread Edward Elliott
Dennis Lee Bieber wrote: 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# Please don't. Crypto algorithms are hard enough to implement correctly as it is. Leave