DecryptEncryptKeys 1.0.0
dotnet add package DecryptEncryptKeys --version 1.0.0
NuGet\Install-Package DecryptEncryptKeys -Version 1.0.0
<PackageReference Include="DecryptEncryptKeys" Version="1.0.0" />
paket add DecryptEncryptKeys --version 1.0.0
#r "nuget: DecryptEncryptKeys, 1.0.0"
// Install DecryptEncryptKeys as a Cake Addin #addin nuget:?package=DecryptEncryptKeys&version=1.0.0 // Install DecryptEncryptKeys as a Cake Tool #tool nuget:?package=DecryptEncryptKeys&version=1.0.0
Allow users to perform simple and advanced decryption and encryption.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DecryptEncryptKeys:
Package | Downloads |
---|---|
WCFUtil
WCF Util First Level and Second Level Log |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 5,473 | 8/31/2015 |
Sample:
//Simple Encryption
string encryptedvalue = DataSecurityManager.EncryptDESData(value);
//Simple Decryption
string decryptedvalue = DataSecurityManager.DecryptDESData(encryptedvalue);
//Advanced AES Encryption [also understood by Java]
string encryption = AESCipher.Encrypt(key, value, salttxt.Text.Trim(), ivtxt.Text.Trim());
//Advanced AES Decryption [also understood by Java]
string encryption = AESCipher.Encrypt(key, encryptedvalue, salttxt.Text.Trim(), ivtxt.Text.Trim());
Sample key:
EncryptionKey= "Kl1pK3y"
SALT="s@1t3dt3xt"
IV = "ENCRYPTivKLiPPRO"