2017-06-14 17:27:02 +00:00
|
|
|
from typing import *
|
2017-06-14 15:41:45 +00:00
|
|
|
|
2019-05-17 12:22:36 +00:00
|
|
|
|
2018-01-26 13:28:49 +00:00
|
|
|
# extmod/modtrezorutils/modtrezorutils.c
|
|
|
|
def consteq(sec: bytes, pub: bytes) -> bool:
|
2019-05-17 12:22:36 +00:00
|
|
|
"""
|
2018-01-26 13:28:49 +00:00
|
|
|
Compares the private information in `sec` with public, user-provided
|
|
|
|
information in `pub`. Runs in constant time, corresponding to a length
|
|
|
|
of `pub`. Can access memory behind valid length of `sec`, caller is
|
|
|
|
expected to avoid any invalid memory access.
|
2019-05-17 12:22:36 +00:00
|
|
|
"""
|
|
|
|
|
2018-01-26 13:28:49 +00:00
|
|
|
|
2017-06-14 15:41:45 +00:00
|
|
|
# extmod/modtrezorutils/modtrezorutils.c
|
2019-05-17 12:22:36 +00:00
|
|
|
def memcpy(
|
2020-06-30 13:10:11 +00:00
|
|
|
dst: Union[bytearray, memoryview],
|
|
|
|
dst_ofs: int,
|
|
|
|
src: bytes,
|
|
|
|
src_ofs: int,
|
|
|
|
n: int = None,
|
2019-05-17 12:22:36 +00:00
|
|
|
) -> int:
|
|
|
|
"""
|
2017-06-14 15:41:45 +00:00
|
|
|
Copies at most `n` bytes from `src` at offset `src_ofs` to
|
2020-06-26 10:30:12 +00:00
|
|
|
`dst` at offset `dst_ofs`. Returns the number of actually
|
|
|
|
copied bytes. If `n` is not specified, tries to copy
|
|
|
|
as much as possible.
|
2019-05-17 12:22:36 +00:00
|
|
|
"""
|
|
|
|
|
2017-06-14 15:41:45 +00:00
|
|
|
|
|
|
|
# extmod/modtrezorutils/modtrezorutils.c
|
|
|
|
def halt(msg: str = None) -> None:
|
2019-05-17 12:22:36 +00:00
|
|
|
"""
|
2017-06-14 15:41:45 +00:00
|
|
|
Halts execution.
|
2019-05-17 12:22:36 +00:00
|
|
|
"""
|
2019-06-09 09:24:06 +00:00
|
|
|
GITREV: str
|
|
|
|
VERSION_MAJOR: int
|
|
|
|
VERSION_MINOR: int
|
|
|
|
VERSION_PATCH: int
|
|
|
|
MODEL: str
|
|
|
|
EMULATOR: bool
|
2020-04-20 14:38:50 +00:00
|
|
|
BITCOIN_ONLY: bool
|