mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-05 09:35:12 +01:00
27 lines
490 B
Python
Executable File
27 lines
490 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
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," ")
|