1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-16 02:10:55 +00:00

Added code to make trezor-agent work with keepkey.

This commit is contained in:
Kenneth Heutmaker 2016-01-07 12:21:58 -08:00
parent 40930948d1
commit 53e361b70b
2 changed files with 2 additions and 1 deletions

View File

@ -343,7 +343,7 @@ class DebugLinkMixin(object):
class ProtocolMixin(object):
PRIME_DERIVATION_FLAG = 0x80000000
VENDORS = ('bitcointrezor.com',)
VENDORS = ('bitcointrezor.com', 'keepkey.com',)
def __init__(self, *args, **kwargs):
super(ProtocolMixin, self).__init__(*args, **kwargs)

View File

@ -8,6 +8,7 @@ from transport import Transport, ConnectionError, NotImplementedException
DEVICE_IDS = [
(0x10c4, 0xea80), # Shield
(0x534c, 0x0001), # Trezor
(0x2b24, 0x0001), # KeepKey
]
class FakeRead(object):