├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── claims.go ├── cmd └── h256only │ ├── README.md │ └── app.go ├── doc.go ├── errors.go ├── example_test.go ├── hmac.go ├── hmac_example_test.go ├── hmac_test.go ├── map_claims.go ├── parser.go ├── parser_test.go ├── test └── helpers.go └── token.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/README.md -------------------------------------------------------------------------------- /claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/claims.go -------------------------------------------------------------------------------- /cmd/h256only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/cmd/h256only/README.md -------------------------------------------------------------------------------- /cmd/h256only/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/cmd/h256only/app.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/doc.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/errors.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/example_test.go -------------------------------------------------------------------------------- /hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/hmac.go -------------------------------------------------------------------------------- /hmac_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/hmac_example_test.go -------------------------------------------------------------------------------- /hmac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/hmac_test.go -------------------------------------------------------------------------------- /map_claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/map_claims.go -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/parser.go -------------------------------------------------------------------------------- /parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/parser_test.go -------------------------------------------------------------------------------- /test/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/test/helpers.go -------------------------------------------------------------------------------- /token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinburke/h256only/HEAD/token.go --------------------------------------------------------------------------------