make_credential works

This commit is contained in:
Conor Patrick
2018-05-11 23:20:10 -04:00
parent 71a0f1b55c
commit f1deb635b1
7 changed files with 67 additions and 30 deletions

View File

@@ -17,5 +17,14 @@ if len(sys.argv) not in [2]:
pemkey = sys.argv[1]
attestkey = ecdsa.SigningKey.from_pem(open(pemkey).read())
print(binascii.hexlify(attestkey.to_string()))
print(repr(attestkey.to_string()))
hstr = binascii.hexlify(attestkey.to_string())
print(hstr)
cstr = ''
it = iter(hstr)
for d1 in it:
d2 = next(it)
cstr += '\\x'+d1+d2
print('"%s"' % cstr)