Encrypt your data with modern AES encryption using this easy to use class.
This component makes AES encryption simple. It's easy to use, and it works!
The included class encrypts and decrypts strings using the AES algorithm. It has has no special requirements, and will work anywhere you need it. Instantiate it, feed it strings to work on and you are done. Truly Plug and Play code.
Included in package is a example application that shows how easy is to work with this package. The example application shows encryption / decryption on input from textboxes in a form and on files.
Encrypt (encrypt to string)
Decrypt (decrypt from string)
EncryptString (encrypt to string + URL friendly)
DecryptString(decrypt from string + URL friendly)
URL friendly means formatting is preserved.
The keys and vectors in the dll source file are factors that determine uniqueness of your encryption. Change them before usage.
AES.AESimpl code = new AESimpl();
Questions & Comments