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

..30-Jul-2021-

README.mdH A D30-Jul-2021623 2111

app.goH A D30-Jul-20217.3 KiB298217

args.goH A D30-Jul-2021413 2419

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/cmd/jwt
20
21