Exemplo n.º 1
0
        public void GenerateHash32(string text, int expectedHash)
        {
            var bytes = Encoding.ASCII.GetBytes(text);

            var hash = HashGenerator.GenerateHash32(bytes, Murmur3.Get32BitHashFunction());

            hash.AsInt32().Should().Be(expectedHash);
        }
Exemplo n.º 2
0
 public static IHashFunction Get32Bit() => Murmur3.Get32BitHashFunction();