├── .circleci └── config.yml ├── LICENSE ├── README.md ├── avo └── gen.go ├── blocks.go ├── blocks_amd64.go ├── blocks_amd64.s ├── cmd └── wyhashsum │ └── main.go ├── go.mod ├── go.sum ├── v3 ├── README.md ├── go.mod ├── go.sum ├── wyhash.go ├── wyhash_test.go └── wyrand.go ├── v4 ├── go.mod ├── wyhash.go ├── wyhash_test.go └── wyrand.go ├── wyhash.go ├── wyhash_test.go └── wyrand.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/README.md -------------------------------------------------------------------------------- /avo/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/avo/gen.go -------------------------------------------------------------------------------- /blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/blocks.go -------------------------------------------------------------------------------- /blocks_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/blocks_amd64.go -------------------------------------------------------------------------------- /blocks_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/blocks_amd64.s -------------------------------------------------------------------------------- /cmd/wyhashsum/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/cmd/wyhashsum/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/go.sum -------------------------------------------------------------------------------- /v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/v3/README.md -------------------------------------------------------------------------------- /v3/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/orisano/wyhash/v3 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /v3/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3/wyhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/v3/wyhash.go -------------------------------------------------------------------------------- /v3/wyhash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/v3/wyhash_test.go -------------------------------------------------------------------------------- /v3/wyrand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/v3/wyrand.go -------------------------------------------------------------------------------- /v4/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/orisano/wyhash/v4 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /v4/wyhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/v4/wyhash.go -------------------------------------------------------------------------------- /v4/wyhash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/v4/wyhash_test.go -------------------------------------------------------------------------------- /v4/wyrand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/v4/wyrand.go -------------------------------------------------------------------------------- /wyhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/wyhash.go -------------------------------------------------------------------------------- /wyhash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/wyhash_test.go -------------------------------------------------------------------------------- /wyrand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/wyhash/HEAD/wyrand.go --------------------------------------------------------------------------------