2018-10-30 13:56:57 +00:00
|
|
|
from . import messages, tools
|
2018-08-13 16:21:24 +00:00
|
|
|
from .tools import CallException, expect, normalize_nfc, session
|
2018-06-13 17:04:18 +00:00
|
|
|
|
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
@expect(messages.PublicKey)
|
2018-08-13 16:21:24 +00:00
|
|
|
def get_public_node(
|
2018-09-05 13:21:11 +00:00
|
|
|
client,
|
|
|
|
n,
|
|
|
|
ecdsa_curve_name=None,
|
|
|
|
show_display=False,
|
|
|
|
coin_name=None,
|
2018-10-30 13:56:57 +00:00
|
|
|
script_type=messages.InputScriptType.SPENDADDRESS,
|
2018-08-13 16:21:24 +00:00
|
|
|
):
|
|
|
|
return client.call(
|
2018-10-30 13:56:57 +00:00
|
|
|
messages.GetPublicKey(
|
2018-08-13 16:21:24 +00:00
|
|
|
address_n=n,
|
|
|
|
ecdsa_curve_name=ecdsa_curve_name,
|
|
|
|
show_display=show_display,
|
|
|
|
coin_name=coin_name,
|
2018-09-05 13:21:11 +00:00
|
|
|
script_type=script_type,
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
|
|
|
)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
@expect(messages.Address, field="address")
|
2018-08-13 16:21:24 +00:00
|
|
|
def get_address(
|
|
|
|
client,
|
|
|
|
coin_name,
|
|
|
|
n,
|
|
|
|
show_display=False,
|
|
|
|
multisig=None,
|
2018-10-30 13:56:57 +00:00
|
|
|
script_type=messages.InputScriptType.SPENDADDRESS,
|
2018-08-13 16:21:24 +00:00
|
|
|
):
|
2018-10-30 13:56:57 +00:00
|
|
|
return client.call(
|
|
|
|
messages.GetAddress(
|
|
|
|
address_n=n,
|
|
|
|
coin_name=coin_name,
|
|
|
|
show_display=show_display,
|
|
|
|
multisig=multisig,
|
|
|
|
script_type=script_type,
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2018-10-30 13:56:57 +00:00
|
|
|
)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
@expect(messages.MessageSignature)
|
2018-08-13 16:21:24 +00:00
|
|
|
def sign_message(
|
2018-10-30 13:56:57 +00:00
|
|
|
client, coin_name, n, message, script_type=messages.InputScriptType.SPENDADDRESS
|
2018-08-13 16:21:24 +00:00
|
|
|
):
|
2018-06-13 17:04:18 +00:00
|
|
|
message = normalize_nfc(message)
|
2018-08-13 16:21:24 +00:00
|
|
|
return client.call(
|
2018-10-30 13:56:57 +00:00
|
|
|
messages.SignMessage(
|
2018-08-13 16:21:24 +00:00
|
|
|
coin_name=coin_name, address_n=n, message=message, script_type=script_type
|
|
|
|
)
|
|
|
|
)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
def verify_message(client, coin_name, address, signature, message):
|
|
|
|
message = normalize_nfc(message)
|
|
|
|
try:
|
2018-08-13 16:21:24 +00:00
|
|
|
resp = client.call(
|
2018-10-30 13:56:57 +00:00
|
|
|
messages.VerifyMessage(
|
2018-08-13 16:21:24 +00:00
|
|
|
address=address,
|
|
|
|
signature=signature,
|
|
|
|
message=message,
|
|
|
|
coin_name=coin_name,
|
|
|
|
)
|
|
|
|
)
|
2018-06-13 17:04:18 +00:00
|
|
|
except CallException as e:
|
|
|
|
resp = e
|
2018-10-30 13:56:57 +00:00
|
|
|
return isinstance(resp, messages.Success)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
@session
|
2018-10-30 13:56:57 +00:00
|
|
|
def sign_tx(client, coin_name, inputs, outputs, details=None, prev_txes=None):
|
|
|
|
my_tx = messages.TransactionType(inputs=inputs, outputs=outputs)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
if details is None:
|
|
|
|
signtx = messages.SignTx()
|
|
|
|
else:
|
|
|
|
signtx = details
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
signtx.coin_name = coin_name
|
|
|
|
signtx.inputs_count = len(inputs)
|
|
|
|
signtx.outputs_count = len(outputs)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
res = client.call(signtx)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
# Prepare structure for signatures
|
|
|
|
signatures = [None] * len(inputs)
|
|
|
|
serialized_tx = b""
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
def copy_tx_meta(tx):
|
|
|
|
tx_copy = messages.TransactionType()
|
|
|
|
tx_copy.CopyFrom(tx)
|
|
|
|
# clear fields
|
|
|
|
tx_copy.inputs_cnt = len(tx.inputs)
|
|
|
|
tx_copy.inputs = []
|
|
|
|
tx_copy.outputs_cnt = len(tx.bin_outputs or tx.outputs)
|
|
|
|
tx_copy.outputs = []
|
|
|
|
tx_copy.bin_outputs = []
|
|
|
|
tx_copy.extra_data_len = len(tx.extra_data or b"")
|
|
|
|
tx_copy.extra_data = None
|
|
|
|
return tx_copy
|
|
|
|
|
|
|
|
R = messages.RequestType
|
|
|
|
while isinstance(res, messages.TxRequest):
|
2018-06-13 17:04:18 +00:00
|
|
|
# If there's some part of signed transaction, let's add it
|
2018-10-30 13:56:57 +00:00
|
|
|
if res.serialized:
|
|
|
|
if res.serialized.serialized_tx:
|
|
|
|
serialized_tx += res.serialized.serialized_tx
|
|
|
|
|
|
|
|
if res.serialized.signature_index is not None:
|
|
|
|
idx = res.serialized.signature_index
|
|
|
|
sig = res.serialized.signature
|
|
|
|
if signatures[idx] is not None:
|
|
|
|
raise ValueError("Signature for index %d already filled" % idx)
|
|
|
|
signatures[idx] = sig
|
|
|
|
|
|
|
|
if res.request_type == R.TXFINISHED:
|
2018-06-13 17:04:18 +00:00
|
|
|
break
|
|
|
|
|
|
|
|
# Device asked for one more information, let's process it.
|
|
|
|
if not res.details.tx_hash:
|
2018-10-30 13:56:57 +00:00
|
|
|
current_tx = my_tx
|
2018-06-13 17:04:18 +00:00
|
|
|
else:
|
2018-10-30 13:56:57 +00:00
|
|
|
current_tx = prev_txes[res.details.tx_hash]
|
|
|
|
|
|
|
|
if res.request_type == R.TXMETA:
|
|
|
|
msg = copy_tx_meta(current_tx)
|
|
|
|
res = client.call(messages.TxAck(tx=msg))
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
elif res.request_type == R.TXINPUT:
|
|
|
|
msg = messages.TransactionType()
|
2018-06-13 17:04:18 +00:00
|
|
|
msg.inputs = [current_tx.inputs[res.details.request_index]]
|
2018-10-30 13:56:57 +00:00
|
|
|
res = client.call(messages.TxAck(tx=msg))
|
|
|
|
|
|
|
|
elif res.request_type == R.TXOUTPUT:
|
|
|
|
msg = messages.TransactionType()
|
2018-06-13 17:04:18 +00:00
|
|
|
if res.details.tx_hash:
|
|
|
|
msg.bin_outputs = [current_tx.bin_outputs[res.details.request_index]]
|
|
|
|
else:
|
|
|
|
msg.outputs = [current_tx.outputs[res.details.request_index]]
|
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
res = client.call(messages.TxAck(tx=msg))
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
elif res.request_type == R.TXEXTRADATA:
|
2018-06-13 17:04:18 +00:00
|
|
|
o, l = res.details.extra_data_offset, res.details.extra_data_len
|
2018-10-30 13:56:57 +00:00
|
|
|
msg = messages.TransactionType()
|
2018-08-13 16:21:24 +00:00
|
|
|
msg.extra_data = current_tx.extra_data[o : o + l]
|
2018-10-30 13:56:57 +00:00
|
|
|
res = client.call(messages.TxAck(tx=msg))
|
|
|
|
|
|
|
|
if isinstance(res, messages.Failure):
|
|
|
|
raise CallException("Signing failed")
|
|
|
|
|
|
|
|
if not isinstance(res, messages.TxRequest):
|
|
|
|
raise CallException("Unexpected message")
|
2018-06-13 17:04:18 +00:00
|
|
|
|
|
|
|
if None in signatures:
|
|
|
|
raise RuntimeError("Some signatures are missing!")
|
|
|
|
|
2018-10-30 13:56:57 +00:00
|
|
|
return signatures, serialized_tx
|