murmurhash-net
murmurhash-net copied to clipboard
Doesn't result in a real hash
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).
332557242 is a reversed -1167338989, which is a signed version of 3127628307. Here is the code that calculates correct result https://dotnetfiddle.net/HYjNa6 The library implements algorithm correctly