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

..03-Aug-2021-

README.mdH A D03-Aug-2021624 1911

main.goH A D03-Aug-20217.7 KiB314230

README.md

1`jwt` command-line tool
2=======================
3
4This is a simple tool to sign, verify and show JSON Web Tokens from
5the command line.
6
7The following will create and sign a token, then verify it and output the original claims:
8
9     echo {\"foo\":\"bar\"} | ./jwt -key ../../test/sample_key -alg RS256 -sign - | ./jwt -key ../../test/sample_key.pub -alg RS256 -verify -
10
11Key files should be in PEM format. Other formats are not supported by this tool.
12
13To simply display a token, use:
14
15    echo $JWT | ./jwt -show -
16
17You can install this tool with the following command:
18
19     go install github.com/golang-jwt/jwt/v4/cmd/jwt