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:
parent
40930948d1
commit
53e361b70b
@ -343,7 +343,7 @@ class DebugLinkMixin(object):
|
|||||||
|
|
||||||
class ProtocolMixin(object):
|
class ProtocolMixin(object):
|
||||||
PRIME_DERIVATION_FLAG = 0x80000000
|
PRIME_DERIVATION_FLAG = 0x80000000
|
||||||
VENDORS = ('bitcointrezor.com',)
|
VENDORS = ('bitcointrezor.com', 'keepkey.com',)
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super(ProtocolMixin, self).__init__(*args, **kwargs)
|
super(ProtocolMixin, self).__init__(*args, **kwargs)
|
||||||
|
@ -8,6 +8,7 @@ from transport import Transport, ConnectionError, NotImplementedException
|
|||||||
DEVICE_IDS = [
|
DEVICE_IDS = [
|
||||||
(0x10c4, 0xea80), # Shield
|
(0x10c4, 0xea80), # Shield
|
||||||
(0x534c, 0x0001), # Trezor
|
(0x534c, 0x0001), # Trezor
|
||||||
|
(0x2b24, 0x0001), # KeepKey
|
||||||
]
|
]
|
||||||
|
|
||||||
class FakeRead(object):
|
class FakeRead(object):
|
||||||
|
Loading…
Reference in New Issue
Block a user