unix command line JWT generator.
Project description
A simple command line jwt token generator based on a rsa private key.
By default it will print a JWT token with iss, nbf and exp set which is signed by the private key in ~/.ssh/id_rsa.:
iss - will be set to the current user name nbf - will be set to 1 minute in the past exp - will be set to 30 minutes in the future.
You can override the default settings on the command line.
Options
- --issuer TEXT
of the token
- --not-before INTEGER
number of seconds before now the token is no longer valid
- --expires-after INTEGER
number of seconds after which the token is no longer valid
- --private-key-file PATH
the private key file to sign the token with
- -A, --authorization-header
print authorization header bearer token
- --help
Show this message and exit.
Example
To send the the authorization bearer token with curl, type:
curl -H "$(jwt-generator -A)" https://httpbin.org/headers
Install on MacOS
To install you MacOs you might run into trouble due to the dependency on cryptography. Type::
export LDFLAGS="-L/usr/local/opt/openssl/lib" export CPPFLAGS="-I/usr/local/opt/openssl/include" export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig"
before you do the pip install jwt-generator. See https://github.com/pyca/cryptography/issues/2692 for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file jwt-generator-0.12.1.tar.gz
.
File metadata
- Download URL: jwt-generator-0.12.1.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8eedf76ad3be7e3a3fe5be67666625000b02ea12cdd3ea7cc3927cdb0bda6c2b |
|
MD5 | fd78afd3e868b2621e8f143bff265808 |
|
BLAKE2b-256 | 98c72d0bf0b3fbaa053b833c800dbb09ec3361828c3ca7f4a31136f03b946977 |