xxHash.NET 1.0.2

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

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

xxHash.NET

  • Build Status .NET Framework v4.0:NuGet version .NET core 2.0:NuGet version

A .NET implementation of xxHash.

Synopsis

Demo

.NET Fiddle(https://dotnetfiddle.net/dbgN2y)

xxHash API approach

The following snippet demonstrates computing the XXH32 hash value of the input string "test".

byte[] input = Encoding.ASCII.GetBytes("test");     // the data to be hashed
uint result = XXHash.XXH32(input);                  // compute the XXH32 hash value. => '1042293711'
                                                    // NOTE:
                                                    //   you can specified seed as the second parameter.

The following snippet computes the XXH32 hash value of the input file "test.doc".

Stream stream = File.OpenRead(@"C:\test.doc");      // the data to be hashed
XXHash.State32 state = XXHash.CreateState32();      // create and initialize a xxH states instance.
                                                    // NOTE:
                                                    //   xxHash require a xxH state object for keeping
                                                    //   data, seed, and vectors.
                                                    
XXHash.UpdateState32(state, stream);                // puts the file stream into specified xxH state.

uint result = XXHash.DigestState32(state);          // compute the XXH32 hash value.
Supported xxHash APIs:
| original xxHash API name | XXH32                    | XXH64                    |
|--------------------------|--------------------------|--------------------------|
| XXH*nn*()                | XXHash.XXH32()           | XXHash.XXH64()           |
| XXH*nn*_state_t          | XXHash.State32           | XXHash.State64           |
| XXH*nn*_createState()    | XXHash.CreateState32()   | XXHash.CreateState64()   |
| XXH*nn*_freeState()      | *Not implemented*        | *Not implemented*        |
| XXH*nn*_reset()          | XXHash.ResetState32()    | XXHash.ResetState64()    |
| XXH*nn*_update()         | XXHash.UpdateState32()   | XXHash.UpdateState64()   |
| XXH*nn*_digest()         | XXHash.DigestState32()   | XXHash.DigestState64()   |
HashAlgorithm approach

In addition, the assembly also provides XXHash32 and XXHash64 the two implementation classes of System.Security.Cryptography.HashAlgorithm.

The following snippets demonstrate computing the XXH32 hash value with HashAlgorithm approach.

byte[] input = Encoding.ASCII.GetBytes("test");        // the data to be hashed.
using (HashAlgorithm xxhash = XXHash32.Create())
{
  byte[] result = xxhash.ComputeHash(input);           // compute the hash.
}

-- or --

byte[] input = Encoding.ASCII.GetBytes("test");        // the data to be hashed
using (HashAlgorithm xxhash = XXHash32.Create())
{
  xxhash.TransformFinalBlock(input, 0, input.Length);
  byte[] result = xxhash.Hash;                         // retrieves the hash value.
}

NOTE: XXH64 is also supported: you can use xxHash64 class instead of xxHash32.

Versioning

Copyright (c) 2015 Wilhelm Liao. See LICENSE for further details.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on xxHash.NET:

Package Downloads
LZ4.Frame

LZ4 Frame compress & decompress for .NET based on lz4net.

netCache

netCache is a simple, dependency injection friendly and persistant cache storage library .

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 39,478 10/23/2017

v1.0.2 (equal to xxHash v0.6.2).