Name |
Description |
Adler |
Computes an Adler-32 checksum. |
CRC32 |
Calculates a 32bit Cyclic Redundancy Checksum (CRC) using the same polynomial used by Zip. This type is used internally by DotNetZip; it is generally not used directly by applications wishing to create, read, or manipulate zip archive files. |
CountingStream |
A Stream wrapper, used for bookkeeping on input or output streams. In some cases, it is not possible to get the Position of a stream, let's say, on a write-only output stream like ASP.NET's Response.Output, or on a different write-only stream provided as the destination for the zip by the application. In this case, we can use this counting stream to count the bytes read or written. |
CrcCalculatorStream |
A Stream that calculates a CRC32 (a checksum) on all bytes read, or on all bytes written. |
DeflateStream |
A class for compressing and decompressing streams using the Deflate algorithm. |
InfTree |
|
SharedUtilities |
Collects general purpose utility methods. |
SharedUtils |
|
StaticTree |
|
Tree |
|
ZipConstants |
|
ZipEntry |
Represents a single entry in a ZipFile. Typically, applications get a ZipEntry by enumerating the entries within a ZipFile, or by adding an entry to a ZipFile. |
ZlibBaseStream |
|
ZlibCodec |
Encoder and Decoder for ZLIB (IETF RFC1950 and RFC1951). |
ZlibConstants |
A bunch of constants used in the Zlib interface. |
ZlibException |
A general purpose exception class for exceptions in the Zlib library. |