Phonegap 文件压缩和加密 zip
Phonegap是否提供了文件/数据压缩和加密zip的API,以便它可以安全地上传文件?
HTTPS 是否提供了更好的解决方案?
Does Phonegap provide an API for file/data compression and encryption zip so that it can upload files securely?
Does HTTPS provides a better solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 PhoneGap 上没有直接的压缩库,您应该尝试直接通过 JavaScript 使用以下压缩库:
http ://jszip.stuartk.co.uk/
然后你可以获取压缩文件的 BASE64 并将其发送到服务器,根据文件的内容,你可以将 BASE64 字符串加密成更奇特的东西+ SSL 层。
I dont thinks there is a compression library directly on PhoneGap, you should try to use the following compression libraries directly with JavaScript:
http://jszip.stuartk.co.uk/
You could then get the BASE64 of the zipped file and send it to the server, depending on the contents of the file, you could encrypt the BASE64 string into something more exotic + SSL layer.