JSON Web Token (JWT)
RPC Fast operates with JSON Web Token. Here we explain the way it works.
JSON Web Token (JWT) in simple words
Apply JWT
Generate RSA-256 keys
# generate rsa key
openssl genrsa -out jwtRSA256-private.pem 2048
openssl rsa -in jwtRSA256-private.pem -pubout -outform PEM -out jwtRSA256-public.pemEnable JWT in RPC Fast
Generate the JSON Web Token
Field
Description
Example
Payload
Field
Description
Example
Signature
JSON Web Token
Sending requests with JSON Web Token
What should I do with a wrong JWT?
Key rotation support
Last updated
