1
0

Trezor: Implement resetting a device

This commit is contained in:
Neil Booth
2016-01-03 13:32:33 +09:00
parent 13154d4ce7
commit 87363c8301
5 changed files with 89 additions and 13 deletions

View File

@@ -154,8 +154,8 @@ def trezor_client_class(protocol_mixin, base_client, proto):
cls = TrezorClient
for method in ['apply_settings', 'change_pin', 'get_address',
'get_public_node', 'sign_message', 'sign_tx',
'wipe_device']:
'get_public_node', 'reset_device', 'sign_message',
'sign_tx', 'wipe_device']:
setattr(cls, method, wrapper(getattr(cls, method)))
return cls

View File

@@ -220,19 +220,32 @@ class TrezorCompatiblePlugin(BasePlugin):
self.print_error("clear session:", client)
client.clear_session()
def initialize_device(self, wallet, wizard):
(strength, label, pin_protection, passphrase_protection) \
= wizard.request_trezor_reset_settings(self.device)
assert strength in range(0, 3)
strength = 64 * (strength + 2) # 128, 192 or 256
language = ''
client = self.client(wallet)
client.reset_device(True, strength, passphrase_protection,
pin_protection, label, language)
def select_device(self, wallet, wizard):
'''Called when creating a new wallet. Select the device
to use.'''
'''Called when creating a new wallet. Select the device to use. If
the device is uninitialized, go through the intialization
process.'''
clients = list(self.clients)
if not len(clients):
return
if len(clients) > 1:
labels = [client.label() for client in clients]
msg = _("Please select which %s device to use:") % self.device
client = clients[wizard.query_choice(msg, labels)]
else:
client = clients[0]
suffixes = [_("An unnamed device (wiped)"), _(" (initialized)")]
labels = [client.label() + suffixes[client.is_initialized()]
for client in clients]
msg = _("Please select which %s device to use:") % self.device
client = clients[wizard.query_choice(msg, labels)]
self.pair_wallet(wallet, client)
if not client.is_initialized():
self.initialize_device(wallet, wizard)
def pair_wallet(self, wallet, client):
self.print_error("pairing wallet %s to device %s" % (wallet, client))

View File

@@ -59,7 +59,8 @@ class QtHandler(PrintError):
return self.passphrase
def pin_dialog(self, msg):
# Needed e.g. when renaming label and haven't entered PIN
# Needed e.g. when resetting a device
self.clear_dialog()
dialog = WindowModalDialog(self.window_stack[-1], _("Enter PIN"))
matrix = self.pin_matrix_widget_class()
vbox = QVBoxLayout()