1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00
trezor-firmware/core/src/apps/common/signverify.py

36 lines
937 B
Python
Raw Normal View History

2018-07-03 14:20:26 +00:00
from ubinascii import hexlify
from trezor import utils
from trezor.crypto.hashlib import blake256, sha256
2018-07-03 14:20:26 +00:00
2018-11-06 14:45:02 +00:00
from apps.wallet.sign_tx.writers import write_varint
2019-07-03 13:07:04 +00:00
if False:
from typing import List
from apps.common.coininfo import CoinType
2017-06-13 17:35:14 +00:00
2019-07-03 13:07:04 +00:00
def message_digest(coin: CoinType, message: bytes) -> bytes:
if not utils.BITCOIN_ONLY and coin.decred:
h = utils.HashWriter(blake256())
else:
h = utils.HashWriter(sha256())
write_varint(h, len(coin.signed_message_header))
h.extend(coin.signed_message_header)
write_varint(h, len(message))
h.extend(message)
ret = h.get_digest()
if coin.sign_hash_double:
ret = sha256(ret).digest()
return ret
2019-07-03 13:07:04 +00:00
def split_message(message: bytes) -> List[str]:
try:
m = bytes(message).decode()
words = m.split(" ")
except UnicodeError:
m = "hex(%s)" % hexlify(message).decode()
words = [m]
return words