trezor-firmware
trezor-firmware copied to clipboard
Remove misc cryptographic functions from Bitcoin-only firmware
The following functions should only be in universal firmware:
-
SignIdentity
-
GetECDHSessionKey
the following function should be dropped from all firmwares:
-
CosiCommit
in terms of code organization, all those and more live in apps/misc
. It seems we should keep apps/misc
with things that work in Bitcoin-only, and maybe move SignIdentity
and GetEcdhSessionKey
to something like apps/agent
(because those are mostly for trezor-agent)?
related #2675
I will split this task into 2 PRs:
- [x] Remove
CosiCommit
functionality from all firmwares -> PR: #3551 - [ ] Remove
SignIdentity
andGetECDHSessionKey
from BTC-only firmware -> PR: #3557