python-trezor/trezorlib/debuglink.py

48 lines
1.4 KiB
Python
Raw Normal View History

import trezor_pb2 as proto
2013-01-05 06:42:49 -08:00
from transport import NotImplementedException
2012-12-13 11:05:04 -08:00
def pin_info(pin):
print "Device asks for PIN %s" % pin
def button_press(yes_no):
print "User pressed", '"y"' if yes_no else '"n"'
class DebugLink(object):
def __init__(self, transport, pin_func=pin_info, button_func=button_press):
self.transport = transport
2012-12-13 11:05:04 -08:00
self.pin_func = pin_func
self.button_func = button_func
def read_pin(self):
self.transport.write(proto.DebugLinkGetState(pin=True, matrix=True))
obj = self.transport.read_blocking()
2012-12-13 11:05:04 -08:00
print "Read PIN:", obj.pin
print "Read matrix:", obj.matrix
2013-08-31 18:34:36 -07:00
return (obj.pin, obj.matrix)
def read_pin_encoded(self):
pin, matrix = self.read_pin()
# Now we have real PIN and PIN matrix.
# We have to encode that into encoded pin,
# because application must send back positions
# on keypad, not a real PIN.
2013-08-31 18:34:36 -07:00
pin_encoded = ''.join([ str(matrix.index(p) + 1) for p in pin])
print "Encoded PIN:", pin_encoded
self.pin_func(pin_encoded)
return pin_encoded
def press_button(self, yes_no):
2012-12-13 11:05:04 -08:00
print "Pressing", yes_no
self.button_func(yes_no)
self.transport.write(proto.DebugLinkDecision(yes_no=yes_no))
2012-12-13 11:05:04 -08:00
def press_yes(self):
self.press_button(True)
def press_no(self):
self.press_button(False)