mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-04-23 02:29:10 +00:00
core/bitcoin: Implement GetOwnershipId message.
This commit is contained in:
parent
533de50588
commit
64d9350de2
core/src/apps/bitcoin
@ -5,6 +5,7 @@ from trezor.messages import MessageType
|
||||
def boot() -> None:
|
||||
wire.add(MessageType.GetPublicKey, __name__, "get_public_key")
|
||||
wire.add(MessageType.GetAddress, __name__, "get_address")
|
||||
wire.add(MessageType.GetOwnershipId, __name__, "get_ownership_id")
|
||||
wire.add(MessageType.GetOwnershipProof, __name__, "get_ownership_proof")
|
||||
wire.add(MessageType.SignTx, __name__, "sign_tx")
|
||||
wire.add(MessageType.SignMessage, __name__, "sign_message")
|
||||
|
41
core/src/apps/bitcoin/get_ownership_id.py
Normal file
41
core/src/apps/bitcoin/get_ownership_id.py
Normal file
@ -0,0 +1,41 @@
|
||||
from trezor import wire
|
||||
from trezor.messages.GetOwnershipId import GetOwnershipId
|
||||
from trezor.messages.OwnershipId import OwnershipId
|
||||
|
||||
from apps.common import coininfo
|
||||
from apps.common.paths import validate_path
|
||||
|
||||
from . import addresses, common, scripts
|
||||
from .keychain import with_keychain
|
||||
from .ownership import get_identifier
|
||||
|
||||
if False:
|
||||
from apps.common.seed import Keychain
|
||||
|
||||
|
||||
@with_keychain
|
||||
async def get_ownership_id(
|
||||
ctx, msg: GetOwnershipId, keychain: Keychain, coin: coininfo.CoinInfo
|
||||
) -> OwnershipId:
|
||||
await validate_path(
|
||||
ctx,
|
||||
addresses.validate_full_path,
|
||||
keychain,
|
||||
msg.address_n,
|
||||
coin.curve_name,
|
||||
coin=coin,
|
||||
script_type=msg.script_type,
|
||||
)
|
||||
|
||||
if msg.script_type not in common.INTERNAL_INPUT_SCRIPT_TYPES:
|
||||
raise wire.DataError("Invalid script type")
|
||||
|
||||
if msg.script_type in common.SEGWIT_INPUT_SCRIPT_TYPES and not coin.segwit:
|
||||
raise wire.DataError("Segwit not enabled on this coin")
|
||||
|
||||
node = keychain.derive(msg.address_n)
|
||||
address = addresses.get_address(msg.script_type, coin, node, msg.multisig)
|
||||
script_pubkey = scripts.output_derive_script(address, coin)
|
||||
ownership_id = get_identifier(script_pubkey, keychain)
|
||||
|
||||
return OwnershipId(ownership_id=ownership_id)
|
Loading…
Reference in New Issue
Block a user