Community maintained clone of https://github.com/dgrijalva/jwt-go
Go to file
Jamie Stackhouse 6f536a0d2d Changed example to use Output test. 2015-07-22 13:48:42 -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 example to migration showing new usage of Parse(WithClaims) 2015-07-20 13:25:55 -03:00
VERSION_HISTORY.md version notes for 2.2.0 2014-10-11 13:58:31 -07:00
claims.go Moving claim information into claims.go 2015-07-20 14:38:26 -03: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 Changed example to use Output test. 2015-07-22 13:48:42 -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 Changed default "New" to use NewWithClaims internally. 2015-07-20 14:47:34 -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.

Migration Guide from v2 -> v3

Added the ability to supply a typed object for the claims section of the token.

Unfortunately this requires a breaking change. A few new methods were added to support this, and the old default of map[string]interface{} was changed to jwt.MapClaim.

The old example for creating a token looked like this..

	token := jwt.New(jwt.SigningMethodHS256)
	token.Claims["foo"] = "bar"
	token.Claims["exp"] = time.Now().Add(time.Hour * 72).Unix()

is now directly mapped to...

	token := jwt.New(jwt.SigningMethodHS256)
	claims := token.Claims.(jwt.MapClaim)
	claims["foo"] = "bar"
	claims["exp"] = time.Now().Add(time.Hour * 72).Unix()

However, we added a helper jwt.NewWithClaims which accepts a claims object.

Any type can now be used as the claim object for inside a token so long as it implements the interface jwt.Claims.

So, we added an additional claim type jwt.StandardClaims was added. This is intended to be used as a base for creating your own types from, and includes a few helper functions for verifying the claims defined here.

	claims := jwt.StandardClaims{
		Audience: "myapi"
		ExpiresAt: time.Now().Add(time.Hour * 72).Unix(),
	}
	token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)

On the other end of usage all of the jwt.Parse and friends got a WithClaims suffix added to them.

	token, err := jwt.Parse(token, keyFunc)
	claims := token.Claims.(jwt.MapClaim)
	//like you used to..
	claims["foo"]
	claims["bar"]

New method usage:

	token, err := jwt.ParseWithClaims(token, keyFunc, &jwt.StandardClaims{})
	claims := token.Claims.(jwt.StandardClaims)
	fmt.Println(claims.IssuedAt)

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.NewWithClaims(jwt.SigningMethodHS256, jwt.MapClaim{
		"foo": "bar",
		"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.