1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/core/mocks/ubinascii.pyi

6 lines
233 B
Python
Raw Normal View History

2017-06-14 10:26:02 +00:00
def hexlify(data: bytes, sep: bytes = ...) -> bytes: ...
def unhexlify(data: bytes) -> bytes: ...
def a2b_base64(data: bytes) -> bytes: ...
def b2a_base64(data: bytes) -> bytes: ...
def crc32(data: bytes, crc: int = ...) -> int: ...