minizip is a zip manipulation library written in C that is supported on Windows, macOS, and Linux.
Developed and maintained by Nathan Moinvaziri.
Name | Description |
---|---|
master | Modern rewrite that includes more advanced features, improvements in code maintainability and readability, and the reduction of duplicate code. Compatibility layer provided for older versions. |
dev | Latest development code |
1.2 | Drop-in replacement for zlib's minizip that includes WinZip AES encryption, disk splitting, I/O buffering and some additional fixes. |
1.1 | Original minizip as of zlib 1.2.11. |
Minizip was originally developed by Gilles Vollant in 1998. It was first included in the zlib distribution as an additional code contribution starting in zlib 1.1.2. Since that time, it has been continually improved upon and contributed to by many people. The original project can still be found in the zlib distribution that is maintained by Mark Adler.
My work with the minizip library started in 2006 when I fixed a few bugs I found and submitted them to Gilles Vollant. In 2010, I implemented WinZip AES encryption, disk splitting, and I/O buffering that were necessary for another project I was working on. Shortly after, I created this public repository so I could share my improvements with the community. In early 2017, I began the work to refactor and rewrite the library as version 2 because it had become difficult to maintain and code readability suffered over the years.
- Creating and extracting zip archives.
- Adding and removing entries from zip archives.
- Read and write raw zip entry data.
- Reading and writing zip archives from memory.
- Zlib, BZIP2, LZMA, XZ, and ZSTD compression methods.
- Password protection through Traditional PKWARE and WinZIP AES encryption.
- Buffered streaming for improved I/O performance.
- NTFS timestamp support for UTC last modified, last accessed, and creation dates.
- Disk split support for splitting zip archives into multiple files.
- Preservation of file attributes across file systems.
- Follow and store symbolic links.
- Unicode filename support through UTF-8 encoding.
- Legacy character encoding support CP437, CP932, CP936, CP950.
- Turn off compilation of compression, decompression, or encryption.
- Windows (Win32 & WinRT), macOS and Linux platform support.
- Streaming interface for easy implementation of additional platforms.
- Support for Apple's compression library ZLIB and XZ implementations.
- Zero out local file header information.
- Zip/unzip of central directory to reduce size.
- Ability to generate and verify CMS signature for each entry.
- Recover the central directory if it is corrupt or missing.
- Example minizip command line tool.
To generate project files for your platform:
- Download and install cmake (version 3.11 or later recommended).
- Run cmake in the minizip directory.
cmake . -DMZ_BUILD_TEST=ON
cmake --build .
Name | Description | Default Value |
---|---|---|
MZ_COMPAT | Enables compatibility layer | ON |
MZ_ZLIB | Enables ZLIB compression | ON |
MZ_BZIP2 | Enables BZIP2 compression | ON |
MZ_LZMA | Enables LZMA & XZ compression | ON |
MZ_ZSTD | Enables ZSTD compression | ON |
MZ_FETCH_LIBS | Enables fetching third-party libraries if not found | ON |
MZ_FORCE_FETCH_LIBS | Enables fetching third-party libraries always | OFF |
MZ_PKCRYPT | Enables PKWARE traditional encryption | ON |
MZ_WZAES | Enables WinZIP AES encryption | ON |
MZ_LIBCOMP | Enables Apple compression | OFF |
MZ_OPENSSL | Enables OpenSSL encryption | OFF |
MZ_LIBBSD | Builds with libbsd crypto random | ON |
MZ_BRG | Enables Brian Gladman's library | OFF |
MZ_ICONV | Enables iconv encoding conversion | ON |
MZ_SIGNING | Enables zip signing support | ON |
MZ_COMPRESS_ONLY | Only support compression | OFF |
MZ_DECOMPRESS_ONLY | Only support decompression | OFF |
MZ_BUILD_TEST | Builds minizip test executable | OFF |
MZ_BUILD_UNIT_TEST | Builds minizip unit test project | OFF |
MZ_BUILD_FUZZ_TEST | Builds minizip fuzz executables | OFF |
MZ_CODE_COVERAGE | Build with code coverage flags | OFF |
MZ_PROJECT_SUFFIX | Project name suffix for packaging | |
MZ_FILE32_API | Builds using posix 32-bit file api | OFF |
Third-party libraries may be required based on the CMake options selected. If the system already has the library installed then it will be used, otherwise CMake will retrieve the source code for the library from its official git repository and compile it in.
Project | License | CMake Option | Comments |
---|---|---|---|
aes | license | MZ_BRG |
Written by Brian Gladman. |
bzip2 | license | MZ_BZIP2 |
Written by Julian Seward. |
liblzma | Public domain | MZ_LZMA |
Written by Igor Pavlov and Lasse Collin. |
sha | license | MZ_BRG |
Written by Brian Gladman. |
zlib | zlib | MZ_ZLIB |
Written by Mark Adler and Jean-loup Gailly. Or alternatively, zlib-ng by Hans Kristian Rosbach. |
zstd | BSD | MZ_ZSTD |
Written by Facebook. |
This project uses the zlib license.
Thanks go out to all the people who have taken the time to contribute code reviews, testing and/or patches. This project would not have been as good without you.
Thanks to Gilles Vollant on which this work is originally based on.
The ZIP format was defined by Phil Katz of PKWARE.