Skip to content

Commit 96d988d

Browse files
authored
support AES, compression level, tvOS, ...
1 parent 6746665 commit 96d988d

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,21 @@
33

44
# SSZipArchive
55

6-
ZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.
6+
ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS.
77

88
- Unzip zip files;
99
- Unzip password protected zip files;
10-
- Create new zip files;
10+
- Unzip AES encrypted zip files;
11+
- Create zip files;
12+
- Create password protected zip files;
13+
- Create AES encrypted zip files;
14+
- Choose compression level;
1115
- Append to existing zip files;
12-
- Zip files;
1316
- Zip-up NSData instances. (with a filename)
1417

1518
## Installation and Setup
1619

17-
*The main release branch is configured to support Objective C and Swift 3+. There is a 'swift23' branch which is a tied to a older 1.x release and will not be upgraded. Xcode 8.3+ removes support for Swift 2.3*
20+
*The main release branch is configured to support Objective C and Swift 3+. There is a 'swift23' branch which is a tied to a older 1.x release and will not be upgraded.*
1821

1922
SSZipArchive works on Xcode 7-9 and above, iOS 8-11 and above.
2023

@@ -39,10 +42,10 @@ SSZipArchive requires ARC.
3942

4043
```objective-c
4144
// Create
42-
[SSZipArchive createZipFileAtPath: zipPath withContentsOfDirectory: sampleDataPath];
45+
[SSZipArchive createZipFileAtPath:zipPath withContentsOfDirectory:sampleDataPath];
4346

4447
// Unzip
45-
[SSZipArchive unzipFileAtPath:zipPath toDestination: unzipPath];
48+
[SSZipArchive unzipFileAtPath:zipPath toDestination:unzipPath];
4649
```
4750
4851
### Swift
@@ -57,7 +60,7 @@ SSZipArchive.unzipFileAtPath(zipPath, toDestination: unzipPath)
5760

5861
## License
5962

60-
SSZipArchive is protected under the [MIT license](https://github.com/samsoffes/ssziparchive/raw/master/LICENSE) and our slightly modified version of [Minizip](https://github.com/nmoinvaz/minizip) 1.1 is licensed under the [Zlib license](http://www.zlib.net/zlib_license.html).
63+
SSZipArchive is protected under the [MIT license](https://github.com/samsoffes/ssziparchive/raw/master/LICENSE) and our slightly modified version of [Minizip](https://github.com/nmoinvaz/minizip) 1.2 is licensed under the [Zlib license](http://www.zlib.net/zlib_license.html).
6164

6265
## Acknowledgments
6366

0 commit comments

Comments
 (0)