Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 C 设计一个 zip-unzip 实用程序。有一个 crc-32 代码字段。是压缩数据还是未压缩数据?
它是未压缩数据的 CRC-32。换句话说,它将是压缩前文件原始内容的 CRC-32。Zlib有一个minizip贡献,它是一个用 C 编写的小型 zip/unzip 实现。在zip.c中,您可以在函数zipWriteInFileInZip中看到它正在生成传入缓冲区的 crc,该缓冲区应包含文件的原始内容。
zipWriteInFileInZip