Categorygithub.com/kpango/murmur3
repositorypackage
1.0.0
Repository: https://github.com/kpango/murmur3.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

murmur3 License: MIT release CircleCI codecov Codacy Badge Go Report Card GolangCI Go Walker GoDoc DepShield Badge FOSSA Status

MurmurHash3 go implementation

Example

	seed := 1234567
	data := []byte("data")
	h1, h2 := murmur3.New(seed).Sum128(data)