01Generate signed JWT tokens with specified payload, secret, algorithm, and expiration.
02Decode JWT tokens to reveal header, payload, and signature.
03Validate JWT signatures and expiration against a secret and algorithm.
04Inspect specific JWT claims such as issuer, audience, and custom data.
05Verify the expiration status of any given JWT token.
060 GitHub stars