//! Central directory CRC32 computation for TorrentZip format.
use Hasher;
/// Compute CRC32 of the central directory headers only.
///
/// This takes the raw central directory bytes (not including EOCD).
///
/// # Arguments
///
/// * `cd_data` - Central directory bytes (from first header to last, no EOCD)
///
/// # Returns
///
/// CRC32 value of the central directory bytes.