Info
Version: | 1.0.1 |
Author(s): | Mauricio Junior |
Last Update: | Monday, February 14, 2022 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/mauricio-junior |
NuGet Url: | https://www.nuget.org/packages/CryptAndDecrypt |
Install
Install-Package CryptAndDecrypt
dotnet add package CryptAndDecrypt
paket add CryptAndDecrypt
CryptAndDecrypt Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Easy to use
Easy to crypt data
Easy to decrypt data
New Framework:
- .NET Framework 6
Console example using public key:
var criptografia = CryptAndDecrypt.Management.EncryptAES("www.mauriciojunior.net", "publickey");
Console.WriteLine("criptografia - " + criptografia);
Console.WriteLine("decriptografia - " + CryptAndDecrypt.Management.DecryptAES(criptografia, "publickey"));
You can use any key that you want.
Any doubt, please let me know by web site https://www.mauriciojunior.net.