Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ZipArchive/ZipArchive
ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS.
https://github.com/ZipArchive/ZipArchive
objective-c objective-c-library swift swift-3 swift-library unzipping-files ziparchive
Last synced: 8 days ago
JSON representation
ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS.
- Host: GitHub
- URL: https://github.com/ZipArchive/ZipArchive
- Owner: ZipArchive
- License: mit
- Created: 2010-08-19T20:28:21.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T17:08:25.000Z (about 1 month ago)
- Last Synced: 2024-10-29T11:10:37.680Z (about 1 month ago)
- Topics: objective-c, objective-c-library, swift, swift-3, swift-library, unzipping-files, ziparchive
- Language: C
- Homepage:
- Size: 3.79 MB
- Stars: 5,441
- Watchers: 165
- Forks: 1,312
- Open Issues: 69
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-ios - ZipArchive - ZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac. (Files / Getting Started)
- awesome-macos-libraries - SSZipArchive - ZipArchive is a simple utility class for zipping and unzipping files. Language: C. (Files)
- awesome-ios-star - ZipArchive - ZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac. (Files / Getting Started)
- Awesome-iOS - SSZipArchive - ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS. (Data/File Archive & Unarchive)
- awesome - ZipArchive - ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS. (OOM-Leaks-Crash / Zip)
README
[![CI](https://github.com/ZipArchive/ZipArchive/workflows/CI/badge.svg)](https://github.com/ZipArchive/ZipArchive/actions?query=workflow%3ACI)
# SSZipArchive
ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS, tvOS, watchOS and visionOS.
- 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](https://nvd.nist.gov/vuln/detail/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
- macOS 10.15 and above
- tvOS 15.4 and above
- visionOS 1.0 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
1. Add the `SSZipArchive` and `minizip` folders to your project.
2. Add the `libz` and `libiconv` libraries to your target.
3. Add the `Security` framework to your target.
4. Add the following GCC_PREPROCESSOR_DEFINITIONS: `HAVE_ARC4RANDOM_BUF HAVE_ICONV HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB ZLIB_COMPAT $(inherited)`.SSZipArchive requires ARC.
## Usage
### Objective-C
```objective-c
//Import "#import " for SPM/Carthage, and "#import " for CocoaPods.
// Create
[SSZipArchive createZipFileAtPath:zipPath withContentsOfDirectory:sampleDataPath];// Unzip
[SSZipArchive unzipFileAtPath:zipPath toDestination:unzipPath];
```### Swift
```swift
//Import "import ZipArchive" for SPM/Carthage, and "import SSZipArchive" for CocoaPods.// Create
SSZipArchive.createZipFileAtPath(zipPath, withContentsOfDirectory: sampleDataPath)// Unzip
SSZipArchive.unzipFileAtPath(zipPath, toDestination: unzipPath)
```## License
SSZipArchive is protected under the [MIT license](https://github.com/samsoffes/ssziparchive/raw/master/LICENSE) and our slightly modified version of [minizip-ng (formally minizip)](https://github.com/zlib-ng/minizip-ng) 3.0.10 is licensed under the [Zlib license](https://www.zlib.net/zlib_license.html).
## Acknowledgments
* Big thanks to *aish* for creating [ZipArchive](https://code.google.com/archive/p/ziparchive/). The project that inspired SSZipArchive.
* Thank you [@soffes](https://github.com/soffes) for the actual name of SSZipArchive.
* Thank you [@randomsequence](https://github.com/randomsequence) for implementing the creation support tech.
* Thank you [@johnezang](https://github.com/johnezang) for all his amazing help along the way.
* Thank you [@nmoinvaz](https://github.com/nmoinvaz) for minizip-ng (formally minizip), the core of ZipArchive.
* Thank you to [all the contributors](https://github.com/ZipArchive/ZipArchive/graphs/contributors).