Community maintained clone of https://github.com/dgrijalva/jwt-go
Go to file
Dave Grijalva 2c907dbb70 comments 2014-06-15 19:32:57 -07:00
cmd/jwt change pretty to compact 2014-05-21 16:27:23 +02:00
test almost working 2012-04-17 18:41:12 -07:00
.gitignore a useful example app 2014-05-19 20:13:39 -07:00
LICENSE mit license 2012-04-18 12:02:05 -07:00
README.md mention new examples in README 2014-05-20 15:28:50 -07:00
doc.go comments 2014-06-15 19:32:57 -07:00
jwt.go Merge branch 'master' of github.com:cenkalti/jwt-go 2014-06-15 19:21:25 -07:00
jwt_test.go use ioutil.ReadFile for reading test keys 2014-06-03 16:21:48 +02:00
rs256.go gofmt 2013-02-26 21:29:51 -08:00
rs256_test.go refactor test code 2014-01-02 19:14:07 +02:00
sha256.go gofmt 2012-07-06 17:02:20 -07:00
sha256_test.go GetSigningMethod only returns method - fixes failing tests with go 1.1.2 2013-10-07 22:01:07 -07:00
signing_method.go fixes 2012-07-07 12:12:49 -07:00

README.md

A go (or 'golang' for search engine friendliness) implementation of JSON Web Tokens

What the heck is a JWT?

In short, it's a signed JSON object that does something useful (for example, authentication). It's commonly used for Bearer tokens in Oauth 2. A token is made of three parts, separated by .'s. The first two parts are JSON objects, that have been base64url encoded. The last part is the signature, encoded the same way.

The first part is called the header. It contains the necessary information for verifying the last part, the signature. For example, which encryption method was used for signing and what key was used.

The part in the middle is the interesting bit. It's called the Claims and contains the actual stuff you care about. Refer to the RFC for information about reserved keys and the proper way to add your own.

What's in the box?

This library supports the parsing and verification as well as the generation and signing of JWTs. Current supported signing algorithms are RSA256 and HMAC SHA256, though hooks are present for adding your own.

This library is considered production ready. Feedback and feature requests are appreciated.

Parse and Verify

Parsing and verifying tokens is pretty straight forward. You pass in the token and a function for looking up the key. This is done as a callback since you may need to parse the token to find out what signing method and key was used.

	token, err := jwt.Parse(myToken, func(token *jwt.Token) ([]byte, error) {
		return myLookupKey(token.Header["kid"])
	})

	if err == nil && token.Valid {
		deliverGoodness("!")
	} else {
		deliverUtterRejection(":(")
	}

Create a token

	// Create the token
	token := jwt.New(jwt.GetSigningMethod("HS256"))
	// Set some claims
	token.Claims["foo"] = "bar"
	token.Claims["exp"] = time.Now().Add(time.Hour * 72).Unix()
	// Sign and get the complete encoded token as a string
	tokenString, err := token.SignedString(mySigningKey)

More

Documentation can be found on godoc.org.

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.