Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.1 KB

README.md

File metadata and controls

28 lines (17 loc) · 1.1 KB

SimpleAES

Build Status

This library is a straight-up transliteration of Simple-AES256 from VB to C# for ease of use inside .NET Core applications.

Usage

Encrypting

To encrypt, simply call SimpleAES.AES256.Encrypt(textToEncrypt, key) and it will return you a Base64-encoded value that contains the salt, IV and cipher text.

Decrypting

To decrypt, call SimpleAES.AES256.Decrypt(encryptedContent, key) and the original string value will be returned.

Contributing

Contributions are welcome to the project - whether they are feature requests, improvements or bug fixes! Refer to CONTRIBUTING.md for our contribution requirements.

License

This library is released under the MIT License. It includes code ported from the Simple-AES256 project, which is also released under the MIT License.