Jwt Cli Versions Save

A super fast CLI tool to decode and encode JWTs built in Rust

3.0.1

4 years ago

3.0.0

4 years ago

New features

  • Updated jsonweboken to version 7, which now allows PEM secrets to be used
    • This requires the filename to end with .pem to be detected correctly

2.5.2

4 years ago

Bug fixes

  • Prevent invalid JWT tokens from causing a panic #52

2.5.1

4 years ago

Bug fixes

  • 2.5.1 fixes a nasty bug where non-string JSON values would be dropped during encoding

2.5.0

5 years ago

New features

  • Add support for ECDSA algorithms. For now, only ES256 and ES384 are supported. #12

2.4.0

5 years ago

New features

  • Add support for stdin on encode and decode. Instead of passing a JSON body or a JWT token, you can simply pass -. #10

Minor changes

  • Updated the project to use rust 2018 edition
  • Update dependencies

2.3.0

5 years ago

New features

  • Adds the ability to include a private/public key from a file on the local filesystem using the @ shorthand #9

2.2.1

5 years ago

Bug fixes

  • Add a missing > to Aaron's entry in the contributors section of Cargo.toml

2.2.0

5 years ago

Minor changes

  • You can now use a fully qualified and valid JSON string as the entire payload body. Add it to the end of the command without a flag to use it. It can be combined with the -P and --payload flags to enhance a JSON string.

2.1.0

5 years ago

2018-09-24

Minor changes

  • A new output format has been added: JSON! Use the --json or -j flags to output a pure JSON representation of the header and payload, which can be piped into other programs like jq [#6]