Community maintained clone of https://github.com/dgrijalva/jwt-go
Go to file
Jamie Stackhouse ec042acef7 Recommended changes from PR. Plus some documentation. 2015-07-20 09:50:05 -03:00
cmd/jwt Going through and updating tests to pass. 2015-07-17 15:14:04 -03:00
test Added support for HS384 and HS512 signing methods 2014-07-05 15:08:42 -07:00
.gitignore a useful example app 2014-05-19 20:13:39 -07:00
.travis.yml dropped go v1.2.2 from travis ci config. it's missing some of the things required 2015-06-02 15:39:46 -07:00
LICENSE mit license 2012-04-18 12:02:05 -07:00
README.md Add travis CI tag to README.md 2015-06-02 15:05:49 -07:00
VERSION_HISTORY.md version notes for 2.2.0 2014-10-11 13:58:31 -07:00
doc.go updating documentation 2014-06-15 19:39:12 -07:00
errors.go Adding additional bits to mask for various validation errors. 2015-07-17 16:40:52 -03:00
example_test.go Going through and updating tests to pass. 2015-07-17 15:14:04 -03:00
hmac.go added documentation for HMAC Sign method 2015-01-13 21:33:50 -08:00
hmac_test.go cleaned up benchmarks 2015-04-11 13:53:09 -07:00
jwt.go Recommended changes from PR. Plus some documentation. 2015-07-20 09:50:05 -03:00
jwt_test.go Going through and updating tests to pass. 2015-07-17 15:14:04 -03:00
rsa.go documentation 2014-08-26 15:30:37 -07:00
rsa_test.go use pre-parsed rsa key for rsa benchmark and make sure signing actually succeeds 2015-04-11 14:04:22 -07:00
rsa_utils.go Move errors to variables so they can be matched against 2014-10-20 16:09:02 +11:00
signing_method.go pass keys as interface{} rather than []byte 2014-08-26 14:14:17 -07:00

README.md

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

Build Status

NOTICE: A vulnerability in JWT was recently published. As this library doesn't force users to validate the alg is what they expected, it's possible your usage is effected. There will be an update soon to remedy this, and it will likey require backwards-incompatible changes to the API. In the short term, please make sure your implementation verifies the alg is what you expect.

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.

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) (interface{}, error) {
		// Don't forget to validate the alg is what you expect:
		if _, ok := token.Method.(*jwt.SigningMethodRSA); !ok {
			return nil, fmt.Errorf("Unexpected signing method: %v", token.Header["alg"])
		}
		return myLookupKey(token.Header["kid"])
	})

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

Create a token

	// Create the token
	token := jwt.New(jwt.SigningMethodHS256)
	// 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)

Project Status & Versioning

This library is considered production ready. Feedback and feature requests are appreciated. The API should be considered stable. There should be very few backwards-incompatible changes outside of major version updates (and only with good reason).

This project uses Semantic Versioning 2.0.0. Accepted pull requests will land on master. Periodically, versions will be tagged from master. You can find all the releases on the project releases page.

While we try to make it obvious when we make breaking changes, there isn't a great mechanism for pushing announcements out to users. You may want to use this alternative package include: gopkg.in/dgrijalva/jwt-go.v2. It will do the right thing WRT semantic versioning.

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.