• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cmd/jwt/H08-Mar-2018-

request/H08-Mar-2018-

test/H08-Mar-2018-

.gitignoreH A D08-Mar-201816

.travis.ymlH A D08-Mar-2018117

LICENSEH A D08-Mar-20181 KiB

MIGRATION_GUIDE.mdH A D08-Mar-20184.6 KiB

README.mdH A D08-Mar-20188.7 KiB

VERSION_HISTORY.mdH A D08-Mar-20186.5 KiB

claims.goH A D08-Mar-20183.6 KiB

doc.goH A D08-Mar-2018166

ecdsa.goH A D08-Mar-20183.6 KiB

ecdsa_test.goH A D08-Mar-20183.1 KiB

ecdsa_utils.goH A D08-Mar-20181.4 KiB

errors.goH A D08-Mar-20181.8 KiB

example_test.goH A D08-Mar-20183.6 KiB

hmac.goH A D08-Mar-20182.4 KiB

hmac_example_test.goH A D08-Mar-20182.3 KiB

hmac_test.goH A D08-Mar-20182.9 KiB

http_example_test.goH A D08-Mar-20185.3 KiB

map_claims.goH A D08-Mar-20182.6 KiB

none.goH A D08-Mar-20181.6 KiB

none_test.goH A D08-Mar-20182 KiB

parser.goH A D08-Mar-20184.6 KiB

parser_test.goH A D08-Mar-20189.2 KiB

rsa.goH A D08-Mar-20182.4 KiB

rsa_pss.goH A D08-Mar-20182.7 KiB

rsa_pss_test.goH A D08-Mar-20183.5 KiB

rsa_test.goH A D08-Mar-20186.2 KiB

rsa_utils.goH A D08-Mar-20182.4 KiB

signing_method.goH A D08-Mar-20181.1 KiB

token.goH A D08-Mar-20183.3 KiB

README.md

1# jwt-go
2
3[![Build Status](https://travis-ci.org/dgrijalva/jwt-go.svg?branch=master)](https://travis-ci.org/dgrijalva/jwt-go)
4[![GoDoc](https://godoc.org/github.com/dgrijalva/jwt-go?status.svg)](https://godoc.org/github.com/dgrijalva/jwt-go)
5
6A [go](http://www.golang.org) (or 'golang' for search engine friendliness) implementation of [JSON Web Tokens](http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html)
7
8**NEW VERSION COMING:** There have been a lot of improvements suggested since the version 3.0.0 released in 2016. I'm working now on cutting two different releases: 3.2.0 will contain any non-breaking changes or enhancements. 4.0.0 will follow shortly which will include breaking changes. See the 4.0.0 milestone to get an idea of what's coming. If you have other ideas, or would like to participate in 4.0.0, now's the time. If you depend on this library and don't want to be interrupted, I recommend you use your dependency mangement tool to pin to version 3.
9
10**SECURITY NOTICE:** Some older versions of Go have a security issue in the cryotp/elliptic. Recommendation is to upgrade to at least 1.8.3. See issue #216 for more detail.
11
12**SECURITY NOTICE:** It's important that you [validate the `alg` presented is what you expect](https://auth0.com/blog/2015/03/31/critical-vulnerabilities-in-json-web-token-libraries/). This library attempts to make it easy to do the right thing by requiring key types match the expected alg, but you should take the extra step to verify it in your usage.  See the examples provided.
13
14## What the heck is a JWT?
15
16JWT.io has [a great introduction](https://jwt.io/introduction) to JSON Web Tokens.
17
18In 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](http://tools.ietf.org/html/rfc4648) encoded.  The last part is the signature, encoded the same way.
19
20The 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.
21
22The 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](http://self-issued.info/docs/draft-jones-json-web-token.html) for information about reserved keys and the proper way to add your own.
23
24## What's in the box?
25
26This library supports the parsing and verification as well as the generation and signing of JWTs.  Current supported signing algorithms are HMAC SHA, RSA, RSA-PSS, and ECDSA, though hooks are present for adding your own.
27
28## Examples
29
30See [the project documentation](https://godoc.org/github.com/dgrijalva/jwt-go) for examples of usage:
31
32* [Simple example of parsing and validating a token](https://godoc.org/github.com/dgrijalva/jwt-go#example-Parse--Hmac)
33* [Simple example of building and signing a token](https://godoc.org/github.com/dgrijalva/jwt-go#example-New--Hmac)
34* [Directory of Examples](https://godoc.org/github.com/dgrijalva/jwt-go#pkg-examples)
35
36## Extensions
37
38This library publishes all the necessary components for adding your own signing methods.  Simply implement the `SigningMethod` interface and register a factory method using `RegisterSigningMethod`.
39
40Here's an example of an extension that integrates with the Google App Engine signing tools: https://github.com/someone1/gcp-jwt-go
41
42## Compliance
43
44This library was last reviewed to comply with [RTF 7519](http://www.rfc-editor.org/info/rfc7519) dated May 2015 with a few notable differences:
45
46* In order to protect against accidental use of [Unsecured JWTs](http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#UnsecuredJWT), tokens using `alg=none` will only be accepted if the constant `jwt.UnsafeAllowNoneSignatureType` is provided as the key.
47
48## Project Status & Versioning
49
50This 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).
51
52This project uses [Semantic Versioning 2.0.0](http://semver.org).  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](https://github.com/dgrijalva/jwt-go/releases).
53
54While 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.v3`.  It will do the right thing WRT semantic versioning.
55
56**BREAKING CHANGES:***
57* Version 3.0.0 includes _a lot_ of changes from the 2.x line, including a few that break the API.  We've tried to break as few things as possible, so there should just be a few type signature changes.  A full list of breaking changes is available in `VERSION_HISTORY.md`.  See `MIGRATION_GUIDE.md` for more information on updating your code.
58
59## Usage Tips
60
61### Signing vs Encryption
62
63A token is simply a JSON object that is signed by its author. this tells you exactly two things about the data:
64
65* The author of the token was in the possession of the signing secret
66* The data has not been modified since it was signed
67
68It's important to know that JWT does not provide encryption, which means anyone who has access to the token can read its contents. If you need to protect (encrypt) the data, there is a companion spec, `JWE`, that provides this functionality. JWE is currently outside the scope of this library.
69
70### Choosing a Signing Method
71
72There are several signing methods available, and you should probably take the time to learn about the various options before choosing one.  The principal design decision is most likely going to be symmetric vs asymmetric.
73
74Symmetric signing methods, such as HSA, use only a single secret. This is probably the simplest signing method to use since any `[]byte` can be used as a valid secret. They are also slightly computationally faster to use, though this rarely is enough to matter. Symmetric signing methods work the best when both producers and consumers of tokens are trusted, or even the same system. Since the same secret is used to both sign and validate tokens, you can't easily distribute the key for validation.
75
76Asymmetric signing methods, such as RSA, use different keys for signing and verifying tokens. This makes it possible to produce tokens with a private key, and allow any consumer to access the public key for verification.
77
78### Signing Methods and Key Types
79
80Each signing method expects a different object type for its signing keys. See the package documentation for details. Here are the most common ones:
81
82* The [HMAC signing method](https://godoc.org/github.com/dgrijalva/jwt-go#SigningMethodHMAC) (`HS256`,`HS384`,`HS512`) expect `[]byte` values for signing and validation
83* The [RSA signing method](https://godoc.org/github.com/dgrijalva/jwt-go#SigningMethodRSA) (`RS256`,`RS384`,`RS512`) expect `*rsa.PrivateKey` for signing and `*rsa.PublicKey` for validation
84* The [ECDSA signing method](https://godoc.org/github.com/dgrijalva/jwt-go#SigningMethodECDSA) (`ES256`,`ES384`,`ES512`) expect `*ecdsa.PrivateKey` for signing and `*ecdsa.PublicKey` for validation
85
86### JWT and OAuth
87
88It's worth mentioning that OAuth and JWT are not the same thing. A JWT token is simply a signed JSON object. It can be used anywhere such a thing is useful. There is some confusion, though, as JWT is the most common type of bearer token used in OAuth2 authentication.
89
90Without going too far down the rabbit hole, here's a description of the interaction of these technologies:
91
92* OAuth is a protocol for allowing an identity provider to be separate from the service a user is logging in to. For example, whenever you use Facebook to log into a different service (Yelp, Spotify, etc), you are using OAuth.
93* OAuth defines several options for passing around authentication data. One popular method is called a "bearer token". A bearer token is simply a string that _should_ only be held by an authenticated user. Thus, simply presenting this token proves your identity. You can probably derive from here why a JWT might make a good bearer token.
94* Because bearer tokens are used for authentication, it's important they're kept secret. This is why transactions that use bearer tokens typically happen over SSL.
95
96## More
97
98Documentation can be found [on godoc.org](http://godoc.org/github.com/dgrijalva/jwt-go).
99
100The 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 the documentation.
101