-
Use https://jwt.io/ to decode JWT It also shows the various parts. A JWT token has multiple parts in base64, separated by a point character. Create JWT token Create PEM SSH key: openssl genrsa -out private.pem 2048 Create base64 from header and payload: $ echo -n '{"typ":"JWT","alg":"RS256","kid":"http://10.10.14.17/private.pem"}' | base64 -w0 | sed s/+/-/ | sed -E s/=+$// =>…