We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf221d commit 88ca6c9Copy full SHA for 88ca6c9
src/cryptojwt/tools/keyconv.py
@@ -98,7 +98,7 @@ def jwk2pem(jwk: JWK, private: bool = False) -> bytes:
98
99
def main():
100
""" Main function"""
101
- parser = argparse.ArgumentParser(description='JWK Key Conversion Utility')
+ parser = argparse.ArgumentParser(description='JWK Conversion Utility')
102
103
parser.add_argument('--kid',
104
dest='kid',
@@ -137,7 +137,7 @@ def main():
137
with open(args.output, mode='wt') as file:
138
file.write(json.dumps(serialized))
139
else:
140
- print(serialized)
+ print(json.dumps(serialized, indent=4))
141
142
exit(-1)
143
0 commit comments