Ciphers 1.5.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Ciphers --version 1.5.5
                    
NuGet\Install-Package Ciphers -Version 1.5.5
                    
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="Ciphers" Version="1.5.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ciphers" Version="1.5.5" />
                    
Directory.Packages.props
<PackageReference Include="Ciphers" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ciphers --version 1.5.5
                    
#r "nuget: Ciphers, 1.5.5"
                    
#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.
#:package Ciphers@1.5.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ciphers&version=1.5.5
                    
Install as a Cake Addin
#tool nuget:?package=Ciphers&version=1.5.5
                    
Install as a Cake Tool

Features:
           * The package uses industry strong cryptographic algorithms for encryption, hashing and signing included in the .NET framework.
           * It is very easy to integrate with a Dependency Injection container like Unity, i.e. the behaviors are abstracted with a handful of simple interfaces.
           * It is very easy to use and configure the objects. No configuration parameters default to sensible defaults.
           * The package does not have dependencies except the .NET framework BCL and the Common Service Locator 1.3.
           * Built and tested with .NET 4.0 and 4.5.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Ciphers:

Package Downloads
vm.Aspects

A set of classes, utilities, etc. addressing various common cross-cutting concerns or extending existing similar libraries like Enterprise Library, Unity, etc. Supports .NET 4.6.2, 4.7.1 and 4.7.2.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.13.1 2,504 6/21/2018
1.13.0 2,249 4/26/2018
1.12.6 1,826 3/23/2018
1.12.5 1,967 10/17/2017
1.12.4 1,526 10/13/2017
1.12.3 1,536 10/6/2017
1.12.2 1,533 10/5/2017
1.11.22 1,776 7/22/2017
1.11.21 1,584 6/30/2017
1.11.21-debug 1,371 6/30/2017
1.11.20 1,676 6/14/2017
1.11.19 1,624 5/5/2017
1.11.17 2,051 2/19/2017
1.11.16 2,254 9/20/2016
1.11.15 1,624 8/30/2016
1.11.14 1,617 8/9/2016
1.11.13 1,776 7/27/2016
1.11.12 1,726 5/29/2016
1.11.11 1,655 5/23/2016
1.11.9 1,864 4/24/2016
1.11.8 1,651 4/8/2016
1.11.7 1,721 3/2/2016
1.11.6 1,753 1/26/2016
1.11.5 1,672 1/22/2016
1.11.4 1,712 1/13/2016
1.9.5 1,689 12/15/2015
1.9.3 1,881 12/10/2015
1.9.1 1,695 12/10/2015
1.8.0 1,894 11/30/2015
1.7.0 1,778 9/18/2015
1.6.0 1,840 7/28/2015
1.5.5 1,725 5/12/2015
1.5.4 1,714 5/12/2015
1.5.3 3,937 4/16/2015
1.5.2 1,797 4/16/2015
1.5.1.4 1,747 3/17/2015
1.5.1.3 1,683 3/17/2015
1.5.1.1 1,710 3/17/2015
1.5.1 1,773 3/17/2015
1.5.0.2 1,668 3/12/2015
1.5.0.1 1,709 3/12/2015
1.5.0 1,740 3/11/2015
1.4.0.2 1,705 3/7/2015
1.4.0.1 1,659 3/7/2015
1.4.0 1,747 3/7/2015
1.3.0 1,776 1/12/2015
1.2.0 1,724 12/31/2014
1.1.0 2,185 12/30/2014
1.0.0 2,109 12/25/2014
0.9.1 2,243 12/24/2014
0.9.0 2,000 11/25/2014

* Changed the default value of the property ShouldEncrypt of the ciphers to 'false'.
           The default of 'true' had a performance impact: e.g. the IV would be encrypted and decrypted with a certificate.
           In general the initialization vector is not considered a secret and does not need to be encrypted.
           If there might be any backwards compatibility issues, you can set it explicitly to true in your code for example like this:

           new EncryptedKeyCipher(encryptionCertificate) { ShouldEncryptIV = false });