.Net MD5 Class

  • Thread starter Thread starter Waldy
  • Start date Start date
W

Waldy

Hi there,
does anyone know the Oracle MD5_Digest function? How would
this be implemented using the .Net MD5 class? There are no obvious methods
in that class.
 
Hi there,
does anyone know the Oracle MD5_Digest function? How would
this be implemented using the .Net MD5 class? There are no obvious methods
in that class.
MD5 is a standard cryptographic Hash function, see
http://en.wikipedia.org/wiki/MD5 or http://tools.ietf.org/html/rfc1321

The .NET MD5 class is abstract, the class to use is
System.Security.Cryptography.MD5CryptoServiceProvider, look that up in
the Microsoft documentation for an example of how to use it.

rossum
 
Back
Top