Categorygithub.com/sohlich/jwt-go
modulepackage
2.3.0+incompatible
Repository: https://github.com/sohlich/jwt-go.git
Documentation: pkg.go.dev

# README

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.

# Packages

No description provided by the author

# Functions

Decode JWT specific base64url encoding with padding stripped.
Encode JWT specific base64url encoding with padding stripped.
Get a signing method from an "alg" string.
Create a new Token.
Parse, validate, and return a token.
Parse PEM encoded Elliptic Curve Private Key Structure.
Parse PEM encoded PKCS1 or PKCS8 public key.
Try to find the token in an http.Request.
Parse PEM encoded PKCS1 or PKCS8 private key.
Parse PEM encoded PKCS1 or PKCS8 public key.
Register the "alg" name and a factory function for signing method.

# Constants

Exp validation failed.
Token is malformed.
NBF validation failed.
Signature validation failed.
Token could not be verified because of signing problems.

# Variables

Sadly this is missing from crypto/ecdsa compared to crypto/rsa.
Error constants.
Error constants.
No description provided by the author
No description provided by the author
No description provided by the author
Error constants.
No description provided by the author
Specific instances for HS256 and company.
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.
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

Marshalling structure for r, s EC point.
Implements the ECDSA family of signing methods signing methods.
Implements the HMAC-SHA family of signing methods signing methods.
Implements the RSA family of signing methods signing methods.
Implements the RSAPSS family of signing methods signing methods.
A JWT Token.
The error from Parse if token is not valid.

# Interfaces

Signing method.

# Type aliases

Parse methods use this callback function to supply the key for verification.