simple creation of Encrypted JSON web token by python
- Create both private and the public keys to use it for signing the token and encrypting it
openssl genrsa -out privatekey.pem 4096
openssl rsa -in privatekey.pem -out publickey.pem -pubout -outform PEM
- Create virtual environment
python3 -m venv venv
- install dependencies
pip install -r requirements.txt
The things you need before installing the software.
- python3
A few examples of useful commands and/or tasks.
python app.py