1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-07 14:00:57 +00:00
trezor-firmware/core/src/apps/stellar/writers.py

39 lines
1.1 KiB
Python
Raw Normal View History

from typing import TYPE_CHECKING
import apps.common.writers as writers
2018-05-17 12:24:37 +00:00
# Reexporting to other modules
write_bytes_fixed = writers.write_bytes_fixed
write_uint32 = writers.write_uint32_be
write_uint64 = writers.write_uint64_be
2018-05-17 12:24:37 +00:00
if TYPE_CHECKING:
from typing import AnyStr
2018-05-17 12:24:37 +00:00
from trezor.utils import Writer
def write_string(w: Writer, s: AnyStr) -> None:
"""Write XDR string padded to a multiple of 4 bytes."""
# NOTE: 2 bytes smaller than if-else
buf = s.encode() if isinstance(s, str) else s
2018-08-23 12:39:30 +00:00
write_uint32(w, len(buf))
writers.write_bytes_unchecked(w, buf)
2018-05-24 13:33:03 +00:00
# if len isn't a multiple of 4, add padding bytes
remainder = len(buf) % 4
if remainder:
writers.write_bytes_unchecked(w, bytes([0] * (4 - remainder)))
2018-05-17 12:24:37 +00:00
def write_bool(w: Writer, val: bool) -> None:
# NOTE: 10 bytes smaller than if-else
write_uint32(w, 1 if val else 0)
2018-05-17 12:24:37 +00:00
def write_pubkey(w: Writer, address: str) -> None:
from .helpers import public_key_from_address
2018-05-17 12:24:37 +00:00
# first 4 bytes of an address are the type, there's only one type (0)
write_uint32(w, 0)
writers.write_bytes_fixed(w, public_key_from_address(address), 32)