from typing import * def crc32(data: bytes, crc: int = 0) -> int: """ Computes a CRC32 checksum of `data`. """