JWT decryption/encryption

Coding area

JWT Token

Operation area

签名算法:
Rewrite:
Expiry time:
iat (issuance time):
Type (Typ):

Decoding area

载荷/Payload

私钥

Public key (PEM or JWKS)

Direct Key

Key encoding:

对称密钥

Key encoding:
Iteration count:
salt:
salt encoding:
Hint: We do not log tokens; all verification and debugging are performed on the client!
  1. JWT stands for JSON Web Tokens, the most popular cross-domain authentication solution, an open standard (RFC 7519), for securely transmitting information between parties as JSON objects.
  2. 2. JWT contains authentication info, please keep it safe! We do not record or store your JWT info; all verification and debugging are performed on the client side!
  3. 3. Payload is used to store the actual data to be transmitted. JWT specifies 7 official fields for selection:
    • Issuer (iss): Issuer
    • Subject: sub
    • aud (Audience): recipient
    • exp (Expiration time): Expiry time
    • NBF (Not Before): Effective Date
    • iat (Issued At): Issuance Time
    • jti (JWT ID): ID number

You recently used:

收藏: favorite Menu QQ