murmurhash-net icon indicating copy to clipboard operation
murmurhash-net copied to clipboard

.NET implementation of the murmurhash

Results 9 murmurhash-net issues
Sort by recently updated
recently updated
newest added

### Summary I wish for the nuget packages to have a more informative readme. ### Details The nuget package should be using the same readme as the repo to make...

The generic `HashAlgorithm.TryComputeHash(ReadOnlySpan source, Span destination, out int bytesWritten)` implementation of this function gives an error on the FinalBlock call. It would be nice to overload this method

This will enable the licence type to be correctly rendered in nuget Fixes: #13

With this change the project is now a single csproj with multiple target frameworks and additional compile have been added for the files on not supported platforms. In the process...

There should only be a single csproj file which when compiled produces dll's for each framework and all also produces a nuget package containing the appropriate dll's.

### Is your feature request related to a problem? Please describe. In dependency track this package is reporting as not having a licence type specified ### Describe the solution you'd...

Hello. I just saw the usage of this library in Seq's tutorial: https://blog.datalust.co/serilog-tutorial/ (check for Event type enrichment). When I created the enrichment listed there I notice the Murmur32 class...

When the length of the input data is not a multiple of 16, TransformBlock() does not behave correctly. In the following example, the same hash is generated for different byte...

Testing with the value "test", I receive the `int` value: `332557242` (see here: https://dotnetfiddle.net/p72M2c) When compared to other implementations in other languages, this is an incorrect value (should be [3127628307](http://murmurhash.shorelabs.com/)).