From 0fbf86c98bea9e5c5c2fa06dea5159593bf404bd Mon Sep 17 00:00:00 2001 From: Dave Grijalva Date: Wed, 8 Jun 2016 11:38:48 -0700 Subject: [PATCH] documentation update --- README.md | 2 +- http_example_test.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d84a9c5..93203f9 100644 --- a/README.md +++ b/README.md @@ -133,4 +133,4 @@ Without going too far down the rabbit hole, here's a description of the interact Documentation can be found [on godoc.org](http://godoc.org/github.com/dgrijalva/jwt-go). -The command line utility included in this project (cmd/jwt) provides a straightforward example of token creation and parsing as well as a useful tool for debugging your own integration. For a more http centric example, see [this gist](https://gist.github.com/cryptix/45c33ecf0ae54828e63b). +The command line utility included in this project (cmd/jwt) provides a straightforward example of token creation and parsing as well as a useful tool for debugging your own integration. You'll also find several implementation examples in to documentation. diff --git a/http_example_test.go b/http_example_test.go index 715c5d7..82e9c50 100644 --- a/http_example_test.go +++ b/http_example_test.go @@ -1,6 +1,7 @@ package jwt_test -// using asymmetric crypto/RSA keys +// Example HTTP auth using asymmetric crypto/RSA keys +// This is based on a (now outdated) example at https://gist.github.com/cryptix/45c33ecf0ae54828e63b import ( "bytes"