# jsonwebkey-cli [![Build](https://github.com/informationsea/jsonwebkey-rs/workflows/Rust/badge.svg)](https://github.com/informationsea/jsonwebkey-rs/actions) Convert an RSA public key between Json Web Key and DER/PEM format. ## Usage ``` Json Web Key CLI 0.1.1 Okamura Yasunobu Convert an RSA public key between Json Web Key and DER/PEM format USAGE: jsonwebkey-cli FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: help Prints this message or the help of the given subcommand(s) jwk-to-pem pem-to-jwk ``` ``` jsonwebkey-cli-jwk-to-pem USAGE: jsonwebkey-cli jwk-to-pem --output FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -o, --output [OUTPUT] PEM output ARGS: [INPUT] Json Web Key file ``` ``` jsonwebkey-cli-pem-to-jwk USAGE: jsonwebkey-cli pem-to-jwk [OPTIONS] --output FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -k, --kid [OPTION] kid entry in JWK -o, --output [OUTPUT] json web key output -u, --use [OPTION] use entry in JWK ARGS: [INPUT] PEM file ```