EasyRijndael

Easy-To-Use Rijndael encryption and decryption for .NET


Keywords
AES, Rijndael, Encryption, Decryption, Security, EasyRijndael, Easy
License
MIT
Install
Install-Package EasyRijndael -Version 1.0.3

Documentation

EasyRijndael

EasyRijndael is an easy-to-use Rijndael encryption and decryption Library for .NET based on the DESCryptoServiceProvider and this walkthrough

Installation

The latest stable release can be downloaded on nuget.org

Usage

Importing the package:

VB.NET

Imports EasyRijndael.Main

C#

using EasyRijndael.Main;

Using the package:

VB.NET

Dim PlainText as String = "Example"
Dim EncodedText as String = RijndaelEncode(PlainText, "Password")
Dim DecodedText as String = RijndaelDecode(EncodedText, "Password")

C#

{
    string PlainText = "Example";
    string EncodedText = RijndaelEncode(PlainText, "Password");
    string DecodedText = RijndaelDecode(EncodedText, "Password");
}

License

This project is licensed under the MIT License - see the LICENSE file for details