trezor-core/mocks/ubinascii.py

6 lines
233 B
Python
Raw Normal View History

2017-06-14 03:26:02 -07: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: ...