This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# This script parses and attempts to verify the signature of a Ziti JWT token and prints the header, payload, and | |
# analysis of the token. | |
import argparse | |
import json | |
import logging | |
import os | |
import ssl |