Skip to content

jonjomckay/dotnet-simpleaes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages