Welcome to JWT Pro
, your go-to Python package for creating and verifying JSON Web Tokens (JWTs). With support for AES encryption and HMAC signatures, it ensures your user authentication and data transmission are as secure as possible. The package is highly customizable, letting you tweak encryption settings, headers, payloads and validation to fit your needs perfectly.
JWT Pro is your all-in-one tool for working with JSON Web Tokens (JWTs) in Python. Whether you need to generate, decode, or inspect tokens, JWT Pro makes it simple, safe, and developer-friendly.
- Generate JWTs Easily: Create tokens with custom payloads, headers, and algorithms like HS256. You can even encrypt sensitive data using AES.
- Decode Tokens Instantly: Peek inside JWTs to see headers, payloads, and signatures—no secret key needed.
- Extract Specific Claims: Quickly pull out fields like
email
,role
,permissions
, or any custom claim without manually parsing the token. - CLI Ready: Use the command-line interface to decode tokens, extract claims, or inspect JWT structure—perfect for development and debugging.
- SSO Friendly: Works seamlessly with
id_token
or access tokens from providers like Okta, Auth0, Azure AD, and Google OAuth. - Human-Friendly Errors: If a token is malformed or a claim is missing, the CLI provides clear, readable error messages.
- Debug & Learn: Inspect real-world JWTs to understand their structure, making it an excellent tool for learning and testing authentication flows.
- Security Disclaimer Built-In: JWT Pro clearly warns users that it does not verify signatures, keeping you aware that it’s meant for decoding and debugging only.
- Save Time During Development: Quickly decode, inspect, and understand JWTs without writing extra code.
- Simplify Debugging: Easily spot missing claims, malformed tokens, or issues in SSO/OAuth flows.
- Safe Testing Environment: Work with tokens safely without exposing real secrets, thanks to clear warnings and decoding-only functionality.
- Better Understanding of JWTs: Learn how headers, payloads, and signatures work by seeing them in real-time.
- Support for Real-World SSO: Perfect for developers integrating with identity providers like Okta, Auth0, Azure AD, or Google OAuth.
- Flexible and Versatile: Use it in scripts, CI/CD pipelines, command-line workflows, or interactive development.
- Human-Friendly: Clear error messages and CLI output make it easy to understand, even for those new to JWTs.
This package is available through the PyPI registry.
Before installing, ensure you have Python 3.6 or higher installed. You can download and install Python from python.org.
You can install the package using pip
:
pip install jwt-pro
Method | Description |
---|---|
generate_token() |
Generates a JWT with a custom header, payload, and optional encryption. |
verify_token() |
Verifies a JWT token and checks its validity, expiration, and integrity. |
The encrypt
parameter in the generate_token()
and verify_token()
methods controls whether the payload is encrypted using AES. Here’s how it behaves:
Parameter / Command | Behavior | Use Case |
---|---|---|
encrypt=True |
- The payload is encrypted using AES with CBC mode. | Use when sensitive data in the payload needs to be protected. |
- The token payload is stored in encrypted form and cannot be read directly. | Ideal for protecting data like passwords, user data, etc. | |
encrypt=False |
- The payload is stored in plain text (unencrypted). | Use when the data in the payload does not require encryption. |
- The payload can be directly read and is visible in the token. | Suitable for non-sensitive, public data (e.g., user ID, session info). | |
decode |
- Decodes either header or payload (based on options). | Quickly inspect claims (email , role , exp , etc.) inside a JWT. |
decode_all |
- Decodes header, payload, and signature (no verification). | Get a complete breakdown of a JWT for debugging or learning purposes. |
Command / Option | Behavior | Use Case |
---|---|---|
jwt-pro <token> |
Decodes payload (default) | Quickly inspect the claims inside a JWT token |
jwt-pro <token> --header |
Decodes header only | Check algorithm, type, and key ID of the token |
jwt-pro <token> --all |
Decodes header, payload, and signature (no verify) | Full breakdown of a JWT for debugging/learning |
jwt-pro <token> --get FIELD |
Extracts a specific claim value (error if not found) | Pull just email , role , etc. without dumping everything |
--help |
Shows help, usage instructions, and security warning | Guide users on how to use CLI safely |
from jwt_pro import generate_token, verify_token
from jwt_pro import generate_token
# Define Header and Payload
header = {
"alg": "HS256", # HMAC-SHA256 algorithm
"typ": "JWT"
}
payload = {
"user_id": "12345",
"name": "John Doe"
}
secret = "your-secret-key"
expiry = 3600 (default 3600)
# Generate JWT (without encryption)
token = generate_token(header, payload, secret, expiry, encrypt=False)
print(f"Generated Token: {token}")
from jwt_pro import verify_token
# Secret key used for signing
secret = "your-secret-key"
# Token to verify (use token from previous example)
token = "eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9..."
try:
verified_payload = verify_token(token, secret, encrypt=False)
print(f"Verified Payload: {verified_payload}")
except ValueError as e:
print(f"Verification Error: {e}")
from jwt_pro import generate_token
# Define Header and Payload
header = {
"alg": "HS256", # HMAC-SHA256 algorithm
"typ": "JWT"
}
payload = {
"user_id": "12345",
"name": "John Doe"
}
secret = "your-secret-key"
# Generate JWT with AES encryption
token_encrypted = generate_token(header, payload, secret, expires_in=3600, encrypt=True)
print(f"Generated Encrypted Token: {token_encrypted}")
from jwt_pro import verify_token
# Secret key used for signing
secret = "your-secret-key"
# Encrypted token to verify (use token from previous example)
token_encrypted = "eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9..."
try:
verified_payload_encrypted = verify_token(token_encrypted, secret, encrypt=True)
print(f"Verified Encrypted Payload: {verified_payload_encrypted}")
except ValueError as e:
print(f"Verification Error: {e}")
from jwt_pro import decode_token
token = "eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9..."
print("Payload:", decode_token(token))
from jwt_pro import decode_token
token = "eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9..."
print("Header:", decode_token(token, header=True))
from jwt_pro import decode_all
token = "eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9..."
print("Header:", decode_all(token))
The default expiration time for the token is 1 hour (3600 seconds). If not explicitly specified during token generation, the token will automatically expire 1 hour from the time it was created.
You can change the expiration time by passing the expiry
claim during the token generation process.
from jwt_pro import generate_token
token = generate_token(payload, secret, expiry=7200) # Token will expire in 2 hours
Error Type | Description |
---|---|
ValueError: Token has expired. | Raised when the token has expired based on the exp field. |
ValueError: Invalid token format. | Raised when the token format does not match the expected header.payload.signature format. |
ValueError: Invalid token header. | Raised when the header is malformed or missing required fields. |
ValueError: Invalid token payload. | Raised when the payload cannot be decrypted or parsed. |
ValueError: Unsupported algorithm. | Raised if the algorithm specified in the token header is unsupported. |
- User Authentication: Securely authenticate users in web applications by generating and verifying tokens.
- Data Protection: Encrypt sensitive data in the token payload and ensure its integrity during transmission.
- Session Management: Manage user sessions using JWTs with automatic expiration handling.
- API Authentication: Secure communication between microservices using JWTs for API authentication.
- SSO Token Inspection: Decode and analyze SSO identity tokens (
id_token
) or access tokens from providers like Okta, Auth0, Azure AD, or Google OAuth. - Debugging and Development: Inspect and decode JWTs easily to verify payloads, headers, and signatures during development.
- Claim Extraction: Quickly extract specific claims (like
email
,role
,permissions
) from JWTs without manually parsing the token. - Token Analysis: Decode and review the structure of JWTs from SSO providers, OAuth, or custom APIs for troubleshooting and learning.
- Educational Purposes: Teach and understand JWT internals by seeing how payloads, headers, and signatures are represented.
- CLI Automation: Use command-line decoding for scripts, automated tests, or CI/CD pipelines to inspect tokens programmatically.
- GitHub Discussions: Share use cases, report bugs, and suggest features.
We'd love to hear from you and see how you're using JWT PRO in your projects!
If you have an idea for a new feature, please open a feature request in the Issues section with:
- A clear description of the feature
- Why it would be useful
For issues, feedback, and feature requests, please open an issue on our GitHub Issues page. We actively monitor and respond to community feedback.
Answer:
This error occurs when the token's expiration time (the exp
claim) has passed. Tokens have a built-in expiration time to limit their validity. If you encounter this error, try generating a new token using the generate_token()
method, or check your server logic to ensure the token expiration time is appropriately set.
Answer:
This error indicates that the token is malformed or invalid. Common reasons for this error include:
- The token has been tampered with.
- The wrong secret key or encryption method was used for verification.
- The token does not have the correct structure (header, payload, signature).
To resolve this:
- Ensure that the correct secret key or encryption key is used.
- Verify that the token has not been altered.
Answer:
JWT tokens are typically designed to expire after a certain period (default 1hr or 3600s) . To handle token expiration, you can implement a refresh token mechanism. After the token expires, a valid refresh token can be used to generate a new access token. This can be done by generating a new token using the generate_token()
function with the same user data.
Answer:
When setting encrypt=True
, the JWT token is encrypted using AES encryption to ensure the payload is securely hidden. This is recommended when you want to protect sensitive data within the token. On the other hand, encrypt=False
means the JWT is not encrypted, and only the base64-encoded payload is visible.
Option | Behavior |
---|---|
encrypt=True |
Encrypts the payload using AES encryption. |
encrypt=False |
No encryption; the token's payload is visible. |
Answer:
This error occurs when a required function or method is missing or improperly defined. If you're calling verify_token()
and encountering this issue, check the following:
- Ensure that the
secret
parameter is provided and is notNone
. - If using encryption, make sure the
encrypt=True
flag is set correctly and that the decryption function is properly implemented.
Answer:
The alg
key in the token header specifies the signing algorithm, such as HMAC, RSA, or AES. If the alg
key is missing or invalid in the token's header, the verification process will fail.
To resolve this:
- Ensure the header of the JWT token includes the proper signing algorithm (e.g.,
"alg": "HS256"
for HMAC). - Double-check the configuration and the methods used for token generation.
Answer:
Currently, the package supports AES encryption by default when encrypt=True
. If you'd like to use a different encryption algorithm, you can modify the source code or submit a pull request for additional algorithms. Future versions may include more encryption options.
Answer:
If the token header is missing or malformed, the token cannot be decoded or verified properly. Ensure that the token is generated correctly and that it follows the JWT structure (header, payload, signature).
To avoid this error:
- Validate the token structure before decoding it.
- Ensure that the token is correctly signed and includes a valid header.
Answer:
If the secret
key used to sign the token during generation is different from the one used for verification, the token will not be verified, and a jwt.exceptions.InvalidSignatureError
will be raised. Always ensure that the same secret
key is used for both token creation and verification.
Answer:
If you encounter unexpected errors such as ValueError
or TypeError
, make sure to:
- Verify that all required parameters (e.g.,
payload
,secret
,encrypt
) are correctly provided and have the expected data types. - Ensure that the
exp
claim is set correctly if you're using expiration times. - Check if the
encrypt
flag is correctly set when generating or verifying encrypted tokens.
Answer:
Yes, JWT Pro is designed to be secure and efficient. However, before using it in production, ensure that:
- Your encryption and secret management practices are robust.
- You handle token expiration and renewal securely.
- You validate all tokens before using them in any sensitive operation.
Answer:
To debug JWT-related errors:
- Check the token structure by manually decoding it using an online tool (e.g., jwt.io or TWDecoder).
- Log the generated tokens, headers, and payloads to verify their correctness.
- Ensure that the secret key used in both generation and verification is correct.
- If encryption is used, ensure that the encryption and decryption processes are correctly implemented.
Answer: Yes! JWT Pro can decode the header, payload, and signature of a JWT without verifying it. This is perfect for inspecting SSO tokens, debugging, or extracting claims. However, decoding alone does not guarantee the token is valid.
Answer: Use the CLI with the --get
option. For example:
jwt-pro <token> --get email
This will return only the email field from the payload. If the claim is missing, JWT Pro will show a clear error message listing available claims.
Answer: Yes! Use the --all flag to decode header, payload, and signature in one go:
jwt-pro <token> --all
This is useful for full token inspection during development or SSO troubleshooting.
Answer: Absolutely! JWT Pro works with id_tokens or access tokens from SSO providers. You can decode payloads, headers, or extract claims to debug or verify integration flows. Remember, decoding does not verify the signature.
Answer: JWT Pro provides human-friendly error messages. For example:
Claim 'department' was not found in the token payload.
Available claims are: sub, name, email, role, position, exp
This makes debugging and token inspection much easier for developers and non-technical users.
Answer: Yes! JWT Pro’s CLI is script-friendly. You can decode tokens, extract claims, or inspect headers/payloads programmatically in your automated workflows.
This project is licensed under the MIT License. See the LICENSE file for details.