Murmur3 hash algorithm in C#
This small project is an implementation of the Murmur3 hash algorithm for 32-bit x86, 128-bit x86, and 128-bit x64 variants. All implemented classes descend from System.IO.Hashing's NonCryptographicHashAlgorithm, which should make for easy adoption.
Example:
namespace Murmur3Test
{
using System;
using System.Globalization;
using System.IO.Hashing;
using System.Text;
using Murmur3;
public static class Program
{
public static void Main()
{
NonCryptographicHashAlgorithm alg = new Murmur3F();
alg.Append(Encoding.UTF8.GetBytes("foobar"));
Console.WriteLine(((ulong)BitConverter.ToInt64(alg.GetCurrentHash(), 0)).ToString("X8", CultureInfo.InvariantCulture));
}
}
}This will output BDD2AE7116C85A45 as the Murmur3 128-bit x64 hash of the string "foobar".
BenchmarkDotNet v0.15.8, Linux Ubuntu 24.04.4 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.400
[Host] : .NET 10.0.11 (10.0.11, 10.0.1126.37416), X64 RyuJIT x86-64-v3
DefaultJob : .NET 10.0.11 (10.0.11, 10.0.1126.37416), X64 RyuJIT x86-64-v3
| Method | Mean | Error | StdDev |
|---|---|---|---|
| Murmur3A | 35.17 μs | 0.050 μs | 0.047 μs |
| Murmur3C | 27.66 μs | 0.028 μs | 0.024 μs |
| Murmur3F | 17.57 μs | 0.007 μs | 0.006 μs |