Categorygithub.com/dgrijalva/jwt-go/v4
modulepackage
4.0.0-preview1
Repository: https://github.com/dgrijalva/jwt-go.git
Documentation: pkg.go.dev

# README

jwt-go

Build Status GoDoc

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

NEW VERSION: Version 4 of this library is now available. This is the first non-backward-compatible version in a long time. There are a few changes that all users will notice, such as the new types introduced in members of StandardClaims. More changes are additive or only impact more advanced use. See VERSION_HISTORY.md for a list of changes as well as TODO MIGRATION_GUIDE.md for help updating your code.

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.

SECURITY NOTICE: It's important that you validate the alg presented is what you expect. 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.

What the heck is a JWT?

JWT.io has a great introduction to JSON Web Tokens.

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 HMAC SHA, RSA, RSA-PSS, and ECDSA, though hooks are present for adding your own.

Examples

See the project documentation for examples of usage:

Extensions

This library publishes all the necessary components for adding your own signing methods. Simply implement the SigningMethod interface and register a factory method using RegisterSigningMethod.

Here's an example of an extension that integrates with multiple Google Cloud Platform signing tools (AppEngine, IAM API, Cloud KMS): https://github.com/someone1/gcp-jwt-go

Compliance

This library was last reviewed to comply with RTF 7519 dated May 2015 with a few notable differences:

  • In order to protect against accidental use of Unsecured JWTs, tokens using alg=none will only be accepted if the constant jwt.UnsafeAllowNoneSignatureType is provided as the key.

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.

As of version 4, this project is compatible with go modules. You should use that to ensure you have no unpleasant surprises when updating.

BREAKING CHANGES:*

  • Version 4.0.0 includes a lot of changes from the 3.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.

Usage Tips

Signing vs Encryption

A token is simply a JSON object that is signed by its author. this tells you exactly two things about the data:

  • The author of the token was in the possession of the signing secret
  • The data has not been modified since it was signed

It'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.

Choosing a Signing Method

There 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.

Symmetric 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.

Asymmetric 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.

Signing Methods and Key Types

Each signing method expects a different object type for its signing keys. See the package documentation for details. Here are the most common ones:

  • The HMAC signing method (HS256,HS384,HS512) expect []byte values for signing and validation
  • The RSA signing method (RS256,RS384,RS512) expect *rsa.PrivateKey for signing and *rsa.PublicKey for validation
  • The ECDSA signing method (ES256,ES384,ES512) expect *ecdsa.PrivateKey for signing and *ecdsa.PublicKey for validation

JWT and OAuth

It'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.

Without going too far down the rabbit hole, here's a description of the interaction of these technologies:

  • 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.
  • 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.
  • 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.

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. You'll also find several implementation examples in the documentation.

# Packages

No description provided by the author
Utility package for extracting JWT tokens from HTTP requests.
No description provided by the author

# Functions

At makes a Time value from a standard library time.Time value.
DecodeSegment is used internally for JWT specific base64url encoding with padding stripped.
EncodeSegment is used internally for JWT specific base64url encoding with padding stripped.
GetSigningMethod returns the signing method registered by RegisterSigningMethod This is used by the library internally during parsing and validation.
KnownKeyfunc is a helper for generating a Keyfunc from a known signing method and key.
New creates a new Token.
NewInvalidKeyTypeError creates an InvalidKeyTypeError, automatically capturing the type of received.
NewParser returns a new Parser with the specified options.
NewTime creates a new Time value from a float64, following the JWT spec.
NewValidationHelper creates a validation helper from a list of parser options Not all parser options will impact validation If you already have a custom parser, you can use its ValidationHelper value instead of creating a new one.
NewWithClaims creats a new token with a specified signing method and claims type.
Now returns a new Time value using the current time.
Parse then validate, and return a token.
ParseClaimStrings is used to produce a ClaimStrings value from the various forms it may present during encoding/decodeing.
ParseECPrivateKeyFromPEM is a helper function for parsing a PEM encoded Elliptic Curve Private Key Structure.
ParseECPublicKeyFromPEM is a helper function for parsing a PEM encoded PKCS1 or PKCS8 public key.
ParseRSAPrivateKeyFromPEM is a helper method for parsing PEM encoded PKCS1 or PKCS8 private key.
ParseRSAPrivateKeyFromPEMWithPassword is a helper method for parsing PEM encoded PKCS1 or PKCS8 private key, encrypted with a password.
ParseRSAPublicKeyFromPEM is a helper method for parsing a PEM encoded PKCS1 or PKCS8 public key.
ParseTime is used for creating a Time value from various possible representations that can occur in serialization.
ParseWithClaims is Parse, but with a specified Claims type.
RegisterSigningMethod stores the "alg" name and a factory function pair used internally for looking up a signing method based on "alg".
WithAudience returns the ParserOption for specifying an expected aud member value.
WithIssuer returns the ParserOption that specifies a value to compare against the iss claim.
WithJSONNumber returns the ParserOption for using json.Number instead of float64 when parsing numeric values.
WithLeeway returns the ParserOption for specifying the leeway window.
WithMarshaller returns a SigningOption that will tell the signing code to use your custom Marshaller.
WithoutAudienceValidation returns the ParserOption that specifies audience check should be skipped.
WithoutClaimsValidation returns the ParserOption for disabling claims validation This does not disable signature validation.
WithUnmarshaller returns the ParserOption that replaces the specified decoder.
WithValidMethods returns the ParserOption for specifying valid signing methods.

# Constants

Constants describe which field is being processed by custom Marshaller.
Constants describe which field is being processed by custom Marshaller.
TimePrecision determines how precisely time is measured by this library.
UnsafeAllowNoneSignatureType must be returned from Keyfunc in order for the none signing method to be allowed.

# Variables

DefaultValidationHelper is used by Claims.Valid if none is provided.
Error constants.
Errors returned by RSA Signing Method and helpers.
Errors returned by EC signing methods.
Errors returned by EC signing methods.
Errors returned by RSA Signing Method and helpers.
Errors returned by RSA Signing Method and helpers.
Specific instances for HS256 and company.
NoneSignatureTypeDisallowedError is the error value returned when the none signing method is used without UnsafeAllowNoneSignatureType.
Specific instances for EC256 and company.
Specific instances for EC256 and company.
Specific instances for EC256 and company.
Specific instances for HS256 and company.
Specific instances for HS256 and company.
Specific instances for HS256 and company.
SigningMethodNone implements the none signing method.
Specific instances for RS/PS and company.
Specific instances for RS/PS and company.
Specific instances for RS/PS and company.
Specific instances for RS256 and company.
Specific instances for RS256 and company.
Specific instances for RS256 and company.
TimeFunc provides the current time when parsing token to validate "exp" claim (expiration time).

# Structs

CodingContext provides context to TokenMarshaller and TokenUnmarshaller.
ErrorWrapper provides a simple, concrete helper for implementing nestable errors.
HashUnavailableError measn the request hash function isn't available See: https://godoc.org/crypto#Hash.Available.
InvalidAudienceError means the token failed the audience check per the spec, if an 'aud' claim is present, the value must be verified See: WithAudience and WithoutAudienceValidation.
InvalidClaimsError is a catchall type for claims errors that don't have their own type.
InvalidIssuerError means the token failed issuer validation Issuer validation is only run, by default, if the WithIssuer option is provided.
InvalidKeyError is returned if the key is unusable for some reason other than type.
InvalidKeyTypeError is returned if the key is unusable because it is of an incompatible type.
InvalidSignatureError means the signature on the token is invalid.
MalformedTokenError means the token failed to parse or exhibits some other non-standard property that prevents it being processed by this library.
Parser is the type used to parse and validate a JWT token from string.
SigningError is a catchall type for signing errors.
SigningMethodECDSA implements the ECDSA family of signing methods signing methods Expects *ecdsa.PrivateKey for signing and *ecdsa.PublicKey for verification.
SigningMethodHMAC implements the HMAC-SHA family of signing methods Expects key type of []byte for both signing and validation.
SigningMethodRSA implements the RSA family of signing methods signing methods Expects *rsa.PrivateKey for signing and *rsa.PublicKey for validation.
SigningMethodRSAPSS implements the RSAPSS family of signing methods.
StandardClaims is a structured version of Claims Section, as referenced at https://tools.ietf.org/html/rfc7519#section-4.1 See examples for how to use this with your own claim types.
Time is how this library represents time values.
Token represents JWT Token.
TokenExpiredError allows the caller to know the delta between now and the expired time and the unvalidated claims.
TokenNotValidYetError means the token failed the 'nbf' check.
UnverfiableTokenError means there's something wrong with the signature that prevents this library from verifying it.
ValidationHelper is built by the parser and passed to Claims.Value to carry parse/validation options This standalone type exists to allow implementations to do whatever custom behavior is required while still being able to call upon the standard behavior as necessary.

# Interfaces

Claims is the interface used to hold the claims values of a token For a type to be a Claims object, it must have a Valid method that determines if the token is invalid for any supported reason Claims are parsed and encoded using the standard library's encoding/json package.
SigningMethod is the interface used for signing and verifying tokens.

# Type aliases

ClaimStrings is used for parsing claim properties that can be either a string or array of strings.
FieldDescriptor describes which field is being processed.
Keyfunc is the type passed to Parse methods to supply the key for verification.
MapClaims is the Claims type that uses the map[string]interface{} for JSON decoding This is the default Claims type if you don't supply one.
ParserOption implements functional options for parser behavior see: https://dave.cheney.net/2014/10/17/functional-options-for-friendly-apis.
SigningOption can be passed to signing related methods on Token to customize behavior.
TokenMarshaller is the interface you must implement to provide custom JSON marshalling behavior.
TokenUnmarshaller is the function signature required to supply custom JSON decoding logic.