如何解压AES-256加密的Zip文件?

时间:2021-05-15 13:11:28

I am looking for a compression library to use in iPhone application supports decompressing AES 256-bit archives built in Winzip compression utility.

我正在寻找一个在iPhone应用程序中使用的压缩库,它支持在Winzip压缩实用程序中构建的AES 256位归档文件的解压缩。

Thanks.

谢谢。

3 个解决方案

#1


5  

zlib is part of the iPhone sdk and is a well established and free option. If you're using Xcode you can add it to your project by:

zlib是iPhone sdk的一部分,是一个成熟的免费选择。如果您正在使用Xcode,可以通过以下方式将其添加到项目中:

  1. Right clicking on the Frameworks folder in your project (you can do it elsewhere but that's likely where you want to put it)
  2. 右键单击项目中的框架文件夹(您可以在其他地方执行,但这可能是您想要放置的地方)
  3. Select add file
  4. 选择添加文件
  5. Select existing frameworks
  6. 选择现有的框架
  7. Select libz.1.2.3.dylib
  8. 选择libz.1.2.3.dylib

#2


3  

Thank you very much for the help I finally ened up using ZipArchive library from:

非常感谢您对我使用ZipArchive图书馆的帮助:

http://www.artpol-software.com

http://www.artpol-software.com

I had couple of obstacles such as compiling the library to armv6/armv7/i386 architectures but finally it worked out for me, I am more than happy to share the compiling process if any body want to use ZipArchive, amazing library.

我遇到了一些障碍,比如将库编译为armv6/armv7/i386体系结构,但最终我成功了,如果有人想使用ZipArchive,这个很棒的库,我很高兴与大家分享这个编译过程。

#3


-1  

Heh guys i found this link http://www.flyblog.info/catprogramming/202.html working for me. its really awesome, I got the zip/unzip done in seconds. He has given "HOW TO USE" code also. Make use of it

我发现这个链接http://www.flyblog.info/catprogramming/202.html为我工作。太棒了,我几秒钟就搞定了。他还给出了“如何使用”代码。利用它

Happy learning.

快乐的学习。

#1


5  

zlib is part of the iPhone sdk and is a well established and free option. If you're using Xcode you can add it to your project by:

zlib是iPhone sdk的一部分,是一个成熟的免费选择。如果您正在使用Xcode,可以通过以下方式将其添加到项目中:

  1. Right clicking on the Frameworks folder in your project (you can do it elsewhere but that's likely where you want to put it)
  2. 右键单击项目中的框架文件夹(您可以在其他地方执行,但这可能是您想要放置的地方)
  3. Select add file
  4. 选择添加文件
  5. Select existing frameworks
  6. 选择现有的框架
  7. Select libz.1.2.3.dylib
  8. 选择libz.1.2.3.dylib

#2


3  

Thank you very much for the help I finally ened up using ZipArchive library from:

非常感谢您对我使用ZipArchive图书馆的帮助:

http://www.artpol-software.com

http://www.artpol-software.com

I had couple of obstacles such as compiling the library to armv6/armv7/i386 architectures but finally it worked out for me, I am more than happy to share the compiling process if any body want to use ZipArchive, amazing library.

我遇到了一些障碍,比如将库编译为armv6/armv7/i386体系结构,但最终我成功了,如果有人想使用ZipArchive,这个很棒的库,我很高兴与大家分享这个编译过程。

#3


-1  

Heh guys i found this link http://www.flyblog.info/catprogramming/202.html working for me. its really awesome, I got the zip/unzip done in seconds. He has given "HOW TO USE" code also. Make use of it

我发现这个链接http://www.flyblog.info/catprogramming/202.html为我工作。太棒了,我几秒钟就搞定了。他还给出了“如何使用”代码。利用它

Happy learning.

快乐的学习。