PBKDF2.NET 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package PBKDF2.NET --version 1.0.1
NuGet\Install-Package PBKDF2.NET -Version 1.0.1
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="PBKDF2.NET" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PBKDF2.NET --version 1.0.1
#r "nuget: PBKDF2.NET, 1.0.1"
#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 PBKDF2.NET as a Cake Addin
#addin nuget:?package=PBKDF2.NET&version=1.0.1

// Install PBKDF2.NET as a Cake Tool
#tool nuget:?package=PBKDF2.NET&version=1.0.1

PBKDF2.NET is a .NET Library that extends the System.Security.Cryptography namespace providing adaptive password-based key derivation functionality (PBKDF2) using any HMAC implementation you choose.

PBKDF2.NET allows you to dynamically specify any valid System.Security.HMAC-derived hash algorithm implementation, whether a built-in .NET type or a custom implementation. To use your own custom System.Security.Cryptography.HMAC-derived implementation, you simply register your type with the application domain (for example: via the CryptoConfig class) and you will be able to provide it's identifier string to the constructor when initializing an instance of System.Security.Cryptography.PBKDF2.

A robust configuration implementation is also included via the System.Configuration.PBKDF2Section class. With this configuration section, you can specify a default iteration count, a default HMAC algorithm and a default salt size. When any of these values are not specified during initialization, the configured defaults are used. Upon installation of the package, the following configuration defaults will be assigned:

   algorithm:            HMACSHA1
   iterationCount:     1000         (MIN: 1, MAX: Int.MaxValue)
   saltSize:                8 (bytes)    (MIN: 8, MAX: 65536)



This project is licensed under the MIT License included in the package.

The assembly contains full type documentation and a downloadable documentation package will be available soon.

Product Compatible and additional computed target framework versions.
.NET Framework 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.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 104,628 11/28/2013
1.0.1 2,141 11/27/2013