mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-05-10 02:48:46 +00:00
wip
This commit is contained in:
parent
cb142e1de3
commit
dfea8fb014
@ -167,6 +167,7 @@ Q(boot)
|
|||||||
Q(cache)
|
Q(cache)
|
||||||
Q(cache_codec)
|
Q(cache_codec)
|
||||||
Q(cache_common)
|
Q(cache_common)
|
||||||
|
Q(cache_thp)
|
||||||
Q(caesar)
|
Q(caesar)
|
||||||
Q(cashaddr)
|
Q(cashaddr)
|
||||||
Q(cbor)
|
Q(cbor)
|
||||||
@ -266,6 +267,7 @@ Q(storage)
|
|||||||
Q(storage.cache)
|
Q(storage.cache)
|
||||||
Q(storage.cache_codec)
|
Q(storage.cache_codec)
|
||||||
Q(storage.cache_common)
|
Q(storage.cache_common)
|
||||||
|
Q(storage.cache_thp)
|
||||||
Q(storage.common)
|
Q(storage.common)
|
||||||
Q(storage.device)
|
Q(storage.device)
|
||||||
Q(storage.fido2)
|
Q(storage.fido2)
|
||||||
@ -365,10 +367,49 @@ Q(workflow_handlers)
|
|||||||
Q(writers)
|
Q(writers)
|
||||||
|
|
||||||
#if USE_THP
|
#if USE_THP
|
||||||
|
Q(ThpMessageType)
|
||||||
|
Q(ThpPairingMethod)
|
||||||
|
Q(alternating_bit_protocol)
|
||||||
Q(apps.thp)
|
Q(apps.thp)
|
||||||
Q(apps.thp.credential_manager)
|
Q(apps.thp.credential_manager)
|
||||||
|
Q(apps.thp.pairing)
|
||||||
|
Q(channel)
|
||||||
|
Q(channel_manager)
|
||||||
|
Q(checksum)
|
||||||
|
Q(control_byte)
|
||||||
|
Q(cpace)
|
||||||
Q(credential_manager)
|
Q(credential_manager)
|
||||||
|
Q(crypto)
|
||||||
|
Q(interface_manager)
|
||||||
|
Q(memory_manager)
|
||||||
|
Q(pairing)
|
||||||
|
Q(pairing_context)
|
||||||
|
Q(received_message_handler)
|
||||||
|
Q(session_context)
|
||||||
|
Q(session_manager)
|
||||||
Q(thp)
|
Q(thp)
|
||||||
|
Q(thp_main)
|
||||||
|
Q(transmission_loop)
|
||||||
|
Q(trezor.enums.ThpMessageType)
|
||||||
|
Q(trezor.enums.ThpPairingMethod)
|
||||||
|
Q(trezor.wire.thp)
|
||||||
|
Q(trezor.wire.thp.alternating_bit_protocol)
|
||||||
|
Q(trezor.wire.thp.channel)
|
||||||
|
Q(trezor.wire.thp.channel_manager)
|
||||||
|
Q(trezor.wire.thp.checksum)
|
||||||
|
Q(trezor.wire.thp.control_byte)
|
||||||
|
Q(trezor.wire.thp.cpace)
|
||||||
|
Q(trezor.wire.thp.crypto)
|
||||||
|
Q(trezor.wire.thp.interface_manager)
|
||||||
|
Q(trezor.wire.thp.memory_manager)
|
||||||
|
Q(trezor.wire.thp.pairing_context)
|
||||||
|
Q(trezor.wire.thp.received_message_handler)
|
||||||
|
Q(trezor.wire.thp.session_context)
|
||||||
|
Q(trezor.wire.thp.session_manager)
|
||||||
|
Q(trezor.wire.thp.thp_main)
|
||||||
|
Q(trezor.wire.thp.transmission_loop)
|
||||||
|
Q(trezor.wire.thp.writer)
|
||||||
|
Q(writer)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !BITCOIN_ONLY
|
#if !BITCOIN_ONLY
|
||||||
|
@ -16,8 +16,8 @@ utils.presize_module("trezor", 30)
|
|||||||
# storage imports storage.common, storage.cache and storage.device.
|
# storage imports storage.common, storage.cache and storage.device.
|
||||||
# These import trezor, trezor.config (which is a C module), trezor.utils, and each other.
|
# These import trezor, trezor.config (which is a C module), trezor.utils, and each other.
|
||||||
import storage
|
import storage
|
||||||
# we will need space for 12 items in the storage module
|
# we will need space for 13 items in the storage module
|
||||||
utils.presize_module("storage", 12)
|
utils.presize_module("storage", 13)
|
||||||
|
|
||||||
if not utils.BITCOIN_ONLY:
|
if not utils.BITCOIN_ONLY:
|
||||||
# storage.fido2 only imports C modules
|
# storage.fido2 only imports C modules
|
||||||
|
2
poetry.lock
generated
2
poetry.lock
generated
@ -2059,7 +2059,7 @@ testing = ["flaky (>=3.4.0)", "freezegun (>=0.3.11)", "pathlib2 (>=2.3.3) ; pyth
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "trezor"
|
name = "trezor"
|
||||||
version = "0.14.0"
|
version = "0.13.9"
|
||||||
description = "Python library for communicating with Trezor Hardware Wallet"
|
description = "Python library for communicating with Trezor Hardware Wallet"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.8"
|
python-versions = ">=3.8"
|
||||||
|
Loading…
Reference in New Issue
Block a user