如何解压缩 AES-256 加密的 Zip 文件?
我正在寻找一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
zlib 是 iPhone sdk 的一部分,是一个成熟且免费的选项。如果您使用 Xcode,您可以通过以下方式将其添加到您的项目中:
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:
非常感谢您的帮助,我终于使用了 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.