mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 23:10:12 +00:00
8 lines
261 B
Python
8 lines
261 B
Python
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: ...
|