Reputation: 3667
What CRC32 code is System.IO.Compression.ZipArchive using underneath the covers since .NET does not have CRC32?
Upvotes: 0
Views: 927
Reputation: 244848
The System.IO.Compression
assembly contains an internal
class Crc32Helper
that's used to calculate the checksum.
Upvotes: 2