ipld-eth-server/vendor/github.com/dgryski/go-farm
Elizabeth Engelman 36533f7c3f Update vendor directory and make necessary code changes
Fixes for new geth version
2019-09-25 16:32:27 -05:00
..
.gitignore Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
.travis.yml Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
asm.go Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
basics.go Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
farmhashcc.go Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
farmhashmk.go Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
farmhashna.go Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
farmhashuo.go Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
fp_amd64.s Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
fp_generic.go Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
fp_stub.go Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
LICENSE Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
Makefile Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
README.md Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00
VERSION Update vendor directory and make necessary code changes 2019-09-25 16:32:27 -05:00

go-farm

Google's FarmHash hash functions implemented in Go

Master Branch Master Build Status Master Coverage Status Go Report Card GoDoc

Description

FarmHash, a family of hash functions.

This is a (mechanical) translation of the non-SSE4/non-AESNI hash functions from Google's FarmHash (https://github.com/google/farmhash).

FarmHash provides hash functions for strings and other data. The functions mix the input bits thoroughly but are not suitable for cryptography.

All members of the FarmHash family were designed with heavy reliance on previous work by Jyrki Alakuijala, Austin Appleby, Bob Jenkins, and others.

For more information please consult https://github.com/google/farmhash

Getting started

This application is written in Go language, please refer to the guides in https://golang.org for getting started.

This project include a Makefile that allows you to test and build the project with simple commands. To see all available options:

make help

Running all tests

Before committing the code, please check if it passes all tests using

make qa