Initial commit

This commit is contained in:
Hector Martin
2016-11-23 14:35:12 +09:00
commit 5b1c4f85b6
296 changed files with 39925 additions and 0 deletions

26
pywii/pywii-tools/certinfo.py Executable file
View File

@@ -0,0 +1,26 @@
#!/usr/bin/env python
import sys, os, os.path
import pywii as wii
args = sys.argv[1:]
if args[0] == "-dpki":
wii.loadkeys_dpki()
args.pop(0)
else:
wii.loadkeys()
certfile = args.pop(0)
certs, certlist = wii.parse_certs(open(args.pop(0), "rb").read())
print "Certification file %s: " % certfile
cert = wii.WiiCert(open(certfile, "rb").read())
cert.showinfo(" ")
cert.showsig(certs," ")
print "Certificates:"
for cert in certlist:
cert.showinfo(" - ")
cert.showsig(certs," ")