MacD Level: Big Cheese
 Registered: 06-01-2004 Posts: 19
|
Re: how to encrypt and decrypt data by MD5 buil in class in dotnet
Hi,
Use Cryptography Class. Import the namespace System.Security.Cryptography. This is where you can get all the encryption types that you desire.
For e.g if you need to use MD5 simply Declare an object of type MD5CryptoServiceProvider
Dim md5 As New MD5CryptoServiceProvider
With intellisense you can see all the methods available for you to exploit whenever you use the md5 object which you have declared.
I hope this will assist you.
Have good day.
Best regards,
[Edited by MacD on 24-08-2004 at 09:32 AM GMT]
____________________________
MacD
|