DLL class libraries for creating and removing encryption in .Net applications
This is a very simple script to use. Create an instance of the class CryptService (making using the correct namespace) and call the method, passing the desired parameter provider (see enum CryptProvider).
CryptService crip = new CryptService(CryptProvider.DES);
crip.Key = "MY_KEY";
return crip.Encrypt(text);
CryptService crip = new CryptService(CryptProvider.DES);
crip.Key = "MY_KEY";
return crip.Decrypt(text);
FYI: The comments in the code are all in Portuguese. Feel free to translate ;)
Read the LICENSE file included with the project.
Enjoy!