ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS.
Unzip zip files;
Unzip password protected zip files;
Unzip AES encrypted zip files;
Create zip files;
Create large (> 4.3Gb) files;
Create password protected zip files;
Create AES encrypted zip files;
Choose compression level;
Zip-up NSData instances. (with a filename)
Version 2.5.0+ Updates Minimum OS Versions
A key dependency of this project is the zlib library. zlib before version 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches according to CVE-2018-25032.
zlib 1.2.12 is included in macOS 10.15+ (with latest security patches), iOS 15.5+, tvOS 15.4+, watchOS 8.4+. As such, these OS versions will be the new minimums as of version 2.5.0 of ZipArchive.
If you need support for previous versions of ZipArchive for earlier OS support you can target an earlier version but know you will be using an unmaintained version of this library.
We will not support versions of ZipArchive that use dependencies with known vulnerabilities.
Installation and Setup
The main release branch is configured to support Objective-C and Swift 4+.
SSZipArchive works on Xcode 12 and above, iOS 15.5 and above, tvOS 15.4 and above, macOS 10.15 and above, watchOS 8.4 and above.
CocoaPods
In your Podfile: pod 'SSZipArchive'
You should define your minimum deployment target explicitly, like:
platform :ios, '15.5'
Recommended CocoaPods version should be at least CocoaPods 1.7.5.
SSZipArchive
ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS.
Version 2.5.0+ Updates Minimum OS Versions
A key dependency of this project is the zlib library. zlib before version 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches according to CVE-2018-25032.
zlib 1.2.12 is included in macOS 10.15+ (with latest security patches), iOS 15.5+, tvOS 15.4+, watchOS 8.4+. As such, these OS versions will be the new minimums as of version 2.5.0 of ZipArchive.
If you need support for previous versions of ZipArchive for earlier OS support you can target an earlier version but know you will be using an unmaintained version of this library.
We will not support versions of ZipArchive that use dependencies with known vulnerabilities.
Installation and Setup
The main release branch is configured to support Objective-C and Swift 4+.
SSZipArchive works on Xcode 12 and above, iOS 15.5 and above, tvOS 15.4 and above, macOS 10.15 and above, watchOS 8.4 and above.
CocoaPods
In your Podfile:
pod 'SSZipArchive'
You should define your minimum deployment target explicitly, like:
platform :ios, '15.5'
Recommended CocoaPods version should be at least CocoaPods 1.7.5.
SPM
Add a Swift Package reference to https://github.com/ZipArchive/ZipArchive.git (SSZipArchive 2.5.0 and higher or master)
Carthage
In your Cartfile:
github "ZipArchive/ZipArchive"
We do not release a Carthage pre-built package. Developers are encouraged to build one themselves.
Manual
SSZipArchive
andminizip
folders to your project.libz
andlibiconv
libraries to your target.Security
framework to your target.HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB ZLIB_COMPAT $(inherited)
.SSZipArchive requires ARC.
Usage
Objective-C
Swift
License
SSZipArchive is protected under the MIT license and our slightly modified version of minizip-ng (formally minizip) 3.0.6 is licensed under the Zlib license.
Acknowledgments