Compute a running CRC‐32 over Data from a previous checksum.

Synopsis

Declared in <llvm/Support/CRC.h>

uint32_t
crc32(
    uint32_t CRC,
    ArrayRef<uint8_t> Data);

Return Value

The updated CRC‐32 checksum.

Parameters

Name

Description

CRC

Previous CRC‐32 value to continue from.

Data

Bytes to fold into the checksum.

Created with MrDocs