├── .github ├── dependabot.yml └── workflows │ ├── ci-go-cover.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── govulncheck.yml │ └── safer-golangci-lint.yml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── circlehash64.go ├── circlehash64_ref.go ├── circlehash64_test.go ├── go.mod ├── salts.go └── utils.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-go-cover.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/.github/workflows/ci-go-cover.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/govulncheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/.github/workflows/govulncheck.yml -------------------------------------------------------------------------------- /.github/workflows/safer-golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/.github/workflows/safer-golangci-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/SECURITY.md -------------------------------------------------------------------------------- /circlehash64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/circlehash64.go -------------------------------------------------------------------------------- /circlehash64_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/circlehash64_ref.go -------------------------------------------------------------------------------- /circlehash64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/circlehash64_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/fxamacker/circlehash 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /salts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/salts.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxamacker/circlehash/HEAD/utils.go --------------------------------------------------------------------------------