EasyRijndael 1.0.3
Easy-To-Use Rijndael encryption and decryption for .NET
Install-Package EasyRijndael -Version 1.0.3
dotnet add package EasyRijndael --version 1.0.3
<PackageReference Include="EasyRijndael" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyRijndael --version 1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EasyRijndael, 1.0.3"
For F# scripts that support #r syntax, copy this into the source code to reference the package.
EasyRijndael
EasyRijndael is an easy-to-use Rijndael encryption and decryption Library for .NET based on the DESCryptoServiceProvider and this walkthrough
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
EasyRijndael
EasyRijndael is an easy-to-use Rijndael encryption and decryption Library for .NET based on the DESCryptoServiceProvider and this walkthrough
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
Release Notes
Fixed bugs
Dependencies
This package has no dependencies.
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.