PBKDF2.NET
1.0.1
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
<PackageReference Include="PBKDF2.NET" Version="1.0.1" />
<PackageVersion Include="PBKDF2.NET" Version="1.0.1" />
<PackageReference Include="PBKDF2.NET" />
paket add PBKDF2.NET --version 1.0.1
#r "nuget: PBKDF2.NET, 1.0.1"
#addin nuget:?package=PBKDF2.NET&version=1.0.1
#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 | Versions 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. |
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.