Aaron Stainback
Aaron Stainback

Reputation: 3667

System.IO.Compression.ZipArchive and CRC32

What CRC32 code is System.IO.Compression.ZipArchive using underneath the covers since .NET does not have CRC32?

Upvotes: 0

Views: 927

Answers (1)

svick
svick

Reputation: 244848

The System.IO.Compression assembly contains an internal class Crc32Helper that's used to calculate the checksum.

Upvotes: 2

Related Questions