FingerprintBuilder 2.0.0

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

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

fingerprint-builder-net

ci nuget nuget codecov license

Installation

 dotnet add package FingerprintBuilder

Use

Declare class:

class User
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

Configure Func:

var sha256 = FingerprintBuilder<User>
    .Create(SHA256.Create())
    .For(p => p.FirstName)
    .For(p => p.LastName)
    .Build();

Get hash:

var user = new User { FirstName = "John", LastName = "Smith" };
var hash = sha256(user).ToLowerHexString(); // 62565a67bf16004038c502eb68907411fcf7871c66ee01a1aa274cc18d9fb541

Benchmarks


BenchmarkDotNet=v0.13.5, OS=arch
Intel Core i7-8565U CPU 1.80GHz (Whiskey Lake), 1 CPU, 8 logical and 4 physical cores
.NET SDK=7.0.103
  [Host]     : .NET 7.0.3 (7.0.323.12801), X64 RyuJIT AVX2
  DefaultJob : .NET 7.0.3 (7.0.323.12801), X64 RyuJIT AVX2

Method Mean Error StdDev Min Max Median
MD5_Model_To_Hex 2.142 μs 0.0142 μs 0.0118 μs 2.125 μs 2.163 μs 2.146 μs
SHA1_Model_To_Hex 2.379 μs 0.0155 μs 0.0121 μs 2.355 μs 2.400 μs 2.384 μs
SHA256_Model_To_Hex 3.059 μs 0.0245 μs 0.0217 μs 3.031 μs 3.107 μs 3.054 μs
SHA512_Model_To_Hex 4.564 μs 0.0182 μs 0.0161 μs 4.540 μs 4.598 μs 4.563 μs

License

All contents of this package are licensed under the MIT license.

Product 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 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
2.1.0 492 10/22/2023
2.0.0 227 4/4/2023
1.0.0 35,702 8/28/2021
0.5.0 133,236 5/13/2020
0.4.0 3,494 12/18/2019
0.3.0 958 12/16/2019
0.2.0 730 11/30/2019