MD5 in .Net?
-
Hallo,
wie verwendet man diese Funktionen MD5 in einem .Net Projekt??
In VC6 hab ich eine kleine Funktion die das erledigt, aber hat .Net seine eigene
dafür??lg
pixel
-
System.Security.Cryptography.MD5CryptoServiceProvider
http://msdn2.microsoft.com/en-us/library/system.security.cryptography.md5cryptoserviceprovider.aspxarray<Byte>^ MD5hash( array<Byte>^data ) { // This is one implementation of the abstract class MD5. MD5^ md5 = gcnew MD5CryptoServiceProvider; array<Byte>^ result = md5->ComputeHash( data ); return result; }
-
Hallo Jochen,
danke für den Link!lg
pixel