Data.HashFunction
Data.HashFunction copied to clipboard
C# library to create a common interface to non-cryptographic hash functions.
I had to create a custom as hex string method to get the correct value. Either the value is being stored under the hood with the bytes reversed, or just...
It seems that [System.Data.HashFunction.CityHash](https://www.nuget.org/packages/System.Data.HashFunction.CityHash) NuGet package is outdated. We had a performance test and the repository's version of CityHash128 (from the current master branch) is very good.  But the...
```c# using System.Collections.Generic; using System.Data.HashFunction.CityHash; using System; using System.Text; namespace HashTest { class Program { static void Main(string[] args) { var symbols = new List{'a', 'b', 'x', 'y'}; var hasher...
calculat hash for different unique string with xxHash algorithm, but got same result. c# code: ```csharp using System; using System.Text; using System.Data.HashFunction; using System.Data.HashFunction.xxHash; namespace DemoNS { public class Demo...
Hi! I have compiled your hash functions and created an PowerShell Function as Module with it, See: https://github.com/Kriegel/PowerHash Greets Peter
It would be very useful for the hash functions to accept a ReadOnlySpan instead of only Stream and byte[]. More and more .NET apis are enabled for use with the...