We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ac7ef5 commit 266e550Copy full SHA for 266e550
1 file changed
src/cryptojwt/tools/keygen.py
@@ -71,7 +71,7 @@ def main():
71
72
jwk_dict = jwk.serialize(private=True)
73
print(json.dumps(jwk_dict, sort_keys=True, indent=4))
74
- print("SHA-256: " + b64e(jwk.thumbprint('SHA-256')).decode(), file=sys.stderr)
+ print("SHA-256: " + jwk.thumbprint('SHA-256').decode(), file=sys.stderr)
75
76
77
if __name__ == "__main__":
0 commit comments