You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/mocks/ubinascii.pyi

8 lines
261 B

from typing import AnyStr
def hexlify(data: bytes, sep: bytes = ...) -> bytes: ...
def unhexlify(data: AnyStr) -> bytes: ...
def a2b_base64(data: bytes) -> bytes: ...
def b2a_base64(data: bytes) -> bytes: ...
def crc32(data: bytes, crc: int = ...) -> int: ...