mattconnolly / ZipArchive

zip archive processing for Cocoa - iPhone and OS X
http://code.google.com/p/ziparchive/
MIT License
841 stars 259 forks source link

Unzip encrypted zip #37

Closed henryphtang closed 10 years ago

henryphtang commented 10 years ago

Is there a way to unzip an AES encrypted zip? Can't unzip properly with this type of zip file...

mattconnolly commented 10 years ago

I don't know. This cocoa pod is a wrapper around the minizip library. If the minizip library cannot do it, then this library will not be able to help you.

henryphtang commented 10 years ago

In crypt.h:

/*
...
The new AES encryption added on Zip format by Winzip (see the page
http://www.winzip.com/aes_info.htm ) and PKWare PKZip 5.x Strong
Encryption is not supported.
...
*/

So the zip can't be unzipped. Thanks anyway : )