Need C# Coding for MD5 Algorithm...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Charleees

    #1

    Need C# Coding for MD5 Algorithm...

    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

  • Ravi Teja

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

    > I need C# code for Implementing MD5 Algorithm.

    So ask in a C# group.
    Python's is here

    [color=blue]
    > please Send... ITs URgent[/color]



    Comment

    • Marc 'BlackJack' Rintsch

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

      In <1148884151.511 656.81110@j73g2 000cwa.googlegr oups.com>, Charleees
      wrote:
      [color=blue]
      > 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.....[/color]

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

      HashAlgorithm algorithm = HashAlgorithm.C reate("MD5");

      Ciao,
      Marc 'BlackJack' Rintsch

      Comment

      • Edward Elliott

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

        Dennis Lee Bieber wrote:
        [color=blue]
        > 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#[/color]

        Please don't. Crypto algorithms are hard enough to implement correctly as
        it is. Leave it to the experts and use a library.

        --
        Edward Elliott
        UC Berkeley School of Law (Boalt Hall)
        complangpython at eddeye dot net

        Comment

        Working...