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

..08-Mar-2018-

README.mdH A D08-Mar-2018434 148

app.goH A D08-Mar-20187 KiB283203

args.goH A D08-Mar-2018413 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
11To simply display a token, use:
12
13    echo $JWT | ./jwt -show -
14