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

发布于 2024-09-29 23:54:57 字数 123 浏览 10 评论 0原文

我正在寻找一个在 iPhone 应用程序中使用的压缩库,支持解压缩 Winzip 压缩实用程序中内置的 AES 256 位 存档。

谢谢。

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

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

骷髅 2024-10-06 23:54:57

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

  1. 右键单击​​项目中的 Frameworks 文件夹(您可以在其他地方执行此操作,但这可能是您想要放置的位置)
  2. 选择添加文件
  3. 选择现有框架
  4. 选择 libz.1.2 .3.dylib

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:

  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. Select add file
  3. Select existing frameworks
  4. Select libz.1.2.3.dylib
萤火眠眠 2024-10-06 23:54:57

非常感谢您的帮助,我终于使用了 ZipArchive 库:

http://www.artpol-software.com

我遇到了一些障碍,例如将库编译为armv6/armv7/i386架构,但最终它为我解决了,如果有人想使用ZipArchive,令人惊叹的库,我非常乐意分享编译过程。

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

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文