Skip to content

gitter-badger/csharp.encryption

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

csharp.encryption

DLL class libraries for creating and removing encryption in .Net applications

Stack Share

Usage

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).

Encrypt

CryptService crip = new CryptService(CryptProvider.DES);
crip.Key = "MY_KEY";
return crip.Criptografar(text);

Decrypt

CryptService crip = new CryptService(CryptProvider.DES);
crip.Key = "MY_KEY";
return crip.Descriptografar(text);

FYI: Namespaces, classes and methods are in Portuguese. Feel free to refactor and translate ;)

MIT License

Read the LICENSE file included with the project.

Enjoy!

About

DLL class libraries for creating and removing encryption in .Net applications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%