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