jwt/cmd/jwt
Aaron Boodman 195174e229
Clarify expected format for key files.
2019-10-28 21:57:07 -10:00
..
README.md Clarify expected format for key files. 2019-10-28 21:57:07 -10:00
app.go Added support for RSA-PSS in jwt CLI 2019-01-03 16:53:25 +01:00
args.go allow claims and headers to be specified at command line 2017-01-31 11:36:56 -08:00

README.md

jwt command-line tool

This is a simple tool to sign, verify and show JSON Web Tokens from the command line.

The following will create and sign a token, then verify it and output the original claims:

 echo {\"foo\":\"bar\"} | ./jwt -key ../../test/sample_key -alg RS256 -sign - | ./jwt -key ../../test/sample_key.pub -alg RS256 -verify -

Key files should be in PEM format. Other formats are not supported by this tool.

To simply display a token, use:

echo $JWT | ./jwt -show -

You can install this tool with the following command:

 go install github.com/dgrijalva/jwt-go/cmd/jwt