CentralNotice From Wikipedia, the free encyclopedia Jump to: navigation , search MurmurHash is a non- cryptographic hash function suitable for general hash-based lookup. [1] [2] [3] It was created by Austin Appleby in 2008 [4] and is currently hosted on Github along with its test suite named 'SMHasher'. It also exists in a number of variants, [5] all of which have been released into the public domain. The name comes from two basic operations, multiply (MU) and rotate (R), used in its inner loop. Unlike cryptographic hash functions , it is not specifically designed to be difficult to reverse by an adversary, making it unsuitable for cryptographic purposes. 1 Variants 1.1 MurmurHash3 1.2 MurmurHash2 2 Implementations 3 Vulnerabilities 4 Algorithm 5 See also 6 References 7 External links Variants [ edit ] MurmurHash3 [ edit ] The current version is M...