PBKDF2.NET 2.0.0

dotnet add package PBKDF2.NET --version 2.0.0
NuGet\Install-Package PBKDF2.NET -Version 2.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="PBKDF2.NET" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PBKDF2.NET --version 2.0.0
#r "nuget: PBKDF2.NET, 2.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 PBKDF2.NET as a Cake Addin
#addin nuget:?package=PBKDF2.NET&version=2.0.0

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

PBKDF2.NET provides adaptive password-based key derivation functionality (PBKDF2) for the .NET Framework.

It adheres to the suggested PBKDF2 implementation while also holding true to the .NET cryptographic programming model. This is done to ensure smooth transition for users of this library and reducing the amount of refactoring involved to integrate this library into existing source.

For details on how to use this library, please refer to the project site at:

https://therealmagicmike.github.io/PBKDF2.NET/

This library and it's source is licensed under the MIT License, which is included with this download.

Full source code and documentation is available at:

https://github.com/therealmagicmike/PBKDF2.NET

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,667 11/28/2013
1.0.1 2,141 11/27/2013

***** Change Log *****

 v2.0.0.0
========================
The following changes were introduced in this release:

* improved type interface for all types in lib
* some names of public properties on types were changed drastically from version 1
* library (.dll) naming convention has been changed to provide smoother transitions in future releases
Details: The naming convention of this library is now simply "PBKDF2.NET". Revisions to the source
structuring to accommodate possible builds targeting specific framework versions.
* internal initialization process has changed within the System.Security.Cryptography.PBKDF2 class.
Details: This was done both for performance-tuning reasons and to accommodate the addition of byte[]
Password public property being added to the type to be treated like a Key property. These changes were
necessary to integrate these changes with the internal state management of PBKDF2 objects.