Data.HashFunction icon indicating copy to clipboard operation
Data.HashFunction copied to clipboard

C# library to create a common interface to non-cryptographic hash functions.

Results 18 Data.HashFunction issues
Sort by recently updated
recently updated
newest added

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. ![image](https://user-images.githubusercontent.com/42940319/137335198-d0e7ef9f-91e6-47d6-9229-dd7599a274b3.png) 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...