Ensues.Security
2.0.0
dotnet add package Ensues.Security --version 2.0.0
NuGet\Install-Package Ensues.Security -Version 2.0.0
<PackageReference Include="Ensues.Security" Version="2.0.0" />
paket add Ensues.Security --version 2.0.0
#r "nuget: Ensues.Security, 2.0.0"
// Install Ensues.Security as a Cake Addin #addin nuget:?package=Ensues.Security&version=2.0.0 // Install Ensues.Security as a Cake Tool #tool nuget:?package=Ensues.Security&version=2.0.0
Ensues.Security provides a password algorithm that stores information about how the password was hashed in the encoded hash itself. No additional information is needed to compare a plain-text password to its computation.
Storing this information in the same string as the password hash allows changing the salt size, hash function, and number of key-stretching iterations without breaking legacy passwords or requiring a database.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 is compatible. 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.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version 2.0 includes a cryptographically secure random password generator.
Also, the password algorithm will return false when comparing null arguments
instead of throwing an exception.