mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-16 14:59:14 +01:00
29 lines
531 B
Python
29 lines
531 B
Python
|
#!/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()
|
||
|
|
||
|
tikfile = args.pop(0)
|
||
|
|
||
|
certs = None
|
||
|
if len(args) > 0:
|
||
|
certs, certlist = wii.parse_certs(open(args.pop(0), "rb").read())
|
||
|
|
||
|
print "ETicket file %s:"%tikfile
|
||
|
tik = wii.WiiTik(open(tikfile, "rb").read())
|
||
|
tik.showinfo(" ")
|
||
|
if certs is not None:
|
||
|
tik.showsig(certs," ")
|
||
|
print "Certificates:"
|
||
|
for cert in certlist:
|
||
|
cert.showinfo(" - ")
|
||
|
cert.showsig(certs," ")
|