SimpleHashing 1.0.0
dotnet add package SimpleHashing --version 1.0.0
NuGet\Install-Package SimpleHashing -Version 1.0.0
<PackageReference Include="SimpleHashing" Version="1.0.0" />
<PackageVersion Include="SimpleHashing" Version="1.0.0" />
<PackageReference Include="SimpleHashing" />
paket add SimpleHashing --version 1.0.0
#r "nuget: SimpleHashing, 1.0.0"
#:package SimpleHashing@1.0.0
#addin nuget:?package=SimpleHashing&version=1.0.0
#tool nuget:?package=SimpleHashing&version=1.0.0
Welcome to the SimpleHashing wiki! First download the nuget package and inport the namespace "SimpleHashing".
Now we will generate a new hash with the input "12345"
string Hash = PBKDF2.Hash("12345");
We can also verify a hash.
string Hash = PBKDF2.Hash("12345");
bool Equals = PBKDF2.Verify(Hash, "12345");//true
bool Equals = PBKDF2.Verify(Hash, "54321");//false
Specify the Iterations of PBKDF2(Default = 50000). Iterations need to be the same when using Verify and Hash, else the output will be different and Verify will return false.
string Hash = PBKDF2.Hash("12345", 30000);
bool Equals = PBKDF2.Verify(Hash, "12345", 30000);
//Iterations need to be the same, or Verify will return false.
Specify the length of the hash(Default = 32). This will not be the length of the output. The length of the output will be: 16 + length of hash. Those 16 bytes are used to store the random generated salt.
string Hash = PBKDF2.Hash(Input, Length: 60);
string Hash2 = PBKDF2.Hash(Input, 3000, 60);//With Iterations
bool Equals = PBKDF2.Verify(Hash, Input);//Verify will automaticly detect the length
Hashing a byte[]. Works the same as hashing a string, but now the input and output is a byte[].
byte[] Input = Encoding.UTF8.GetBytes("12345");
byte[] Hash = PBKDF2.Hash(Input);
bool Equals = PBKDF2.Verify(Hash, Input);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.0
- 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 |
|---|