├── LICENSE ├── Makefile ├── README.md ├── run_all_tests.sh └── signers ├── compat ├── compat.go └── compat_test.go ├── error.go ├── legacy ├── DISCLAIMER.md ├── dice_workaround.go ├── dice_workaround_response.go ├── lift_workaround.go ├── plexus_workaround.go ├── search.go └── search_response.go ├── response_writer.go ├── signer.go ├── templates ├── blank.go └── framework_for_test.go ├── test_fixtures.go ├── util.go ├── v1 ├── v1.go └── v1_test.go └── v2 ├── response.go ├── v2.go └── v2_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/README.md -------------------------------------------------------------------------------- /run_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/run_all_tests.sh -------------------------------------------------------------------------------- /signers/compat/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/compat/compat.go -------------------------------------------------------------------------------- /signers/compat/compat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/compat/compat_test.go -------------------------------------------------------------------------------- /signers/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/error.go -------------------------------------------------------------------------------- /signers/legacy/DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/legacy/DISCLAIMER.md -------------------------------------------------------------------------------- /signers/legacy/dice_workaround.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/legacy/dice_workaround.go -------------------------------------------------------------------------------- /signers/legacy/dice_workaround_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/legacy/dice_workaround_response.go -------------------------------------------------------------------------------- /signers/legacy/lift_workaround.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/legacy/lift_workaround.go -------------------------------------------------------------------------------- /signers/legacy/plexus_workaround.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/legacy/plexus_workaround.go -------------------------------------------------------------------------------- /signers/legacy/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/legacy/search.go -------------------------------------------------------------------------------- /signers/legacy/search_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/legacy/search_response.go -------------------------------------------------------------------------------- /signers/response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/response_writer.go -------------------------------------------------------------------------------- /signers/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/signer.go -------------------------------------------------------------------------------- /signers/templates/blank.go: -------------------------------------------------------------------------------- 1 | package templates 2 | -------------------------------------------------------------------------------- /signers/templates/framework_for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/templates/framework_for_test.go -------------------------------------------------------------------------------- /signers/test_fixtures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/test_fixtures.go -------------------------------------------------------------------------------- /signers/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/util.go -------------------------------------------------------------------------------- /signers/v1/v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/v1/v1.go -------------------------------------------------------------------------------- /signers/v1/v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/v1/v1_test.go -------------------------------------------------------------------------------- /signers/v2/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/v2/response.go -------------------------------------------------------------------------------- /signers/v2/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/v2/v2.go -------------------------------------------------------------------------------- /signers/v2/v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/http-hmac-go/HEAD/signers/v2/v2_test.go --------------------------------------------------------------------------------