Last active
July 28, 2024 11:45
-
-
Save jonlundy/f25c99ee0770e19dc595 to your computer and use it in GitHub Desktop.
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/python | |
# SPDX-License-Identifier: MIT | |
import sys,json,base64,binascii | |
with open(sys.argv[1]) as fp: | |
pkey=json.load(fp) | |
def enc(data): | |
missing_padding = 4 - len(data) % 4 | |
if missing_padding: | |
data += b'='* missing_padding | |
return '0x'+binascii.hexlify(base64.b64decode(data,b'-_')).upper() | |
for k,v in pkey.items(): | |
if k == 'kty': continue | |
pkey[k] = enc(v.encode()) | |
print "asn1=SEQUENCE:private_key\n[private_key]\nversion=INTEGER:0" | |
print "n=INTEGER:{}".format(pkey[u'n']) | |
print "e=INTEGER:{}".format(pkey[u'e']) | |
print "d=INTEGER:{}".format(pkey[u'd']) | |
print "p=INTEGER:{}".format(pkey[u'p']) | |
print "q=INTEGER:{}".format(pkey[u'q']) | |
print "dp=INTEGER:{}".format(pkey[u'dp']) | |
print "dq=INTEGER:{}".format(pkey[u'dq']) | |
print "qi=INTEGER:{}".format(pkey[u'qi']) |
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
# Create a DER encoded private key | |
openssl asn1parse -noout -out private_key.der -genconf <(python conv.py private_key.json) | |
# Convert to PEM | |
openssl rsa -in private_key.der -inform der |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! I already used a variation of this within a larger function, but did credit it to you.