DecryptEncryptKeys 1.0.0

dotnet add package DecryptEncryptKeys --version 1.0.0
NuGet\Install-Package DecryptEncryptKeys -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DecryptEncryptKeys" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DecryptEncryptKeys --version 1.0.0
#r "nuget: DecryptEncryptKeys, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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 Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 4,943 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"