如何在上传到用户 Dropbox 之前加密 .plist?
我已将我的应用程序设置为与 Dropbox 配合使用,以在我的应用程序中实现备份功能。我可以轻松地将包含用户数据的 plist 文件上传到 dropbox,但我想在上传之前对数据进行加密,以便他们无法使用文本编辑器看到其中包含的数据。那么如何在上传之前对数据进行加密呢?
I've setup my app to work with Dropbox to implement a backup feature in my app. I could easily upload the plist files that contain the users data to dropbox but I want to encrypt the data before uploading it so that they cannot see the data it contains using a text editor. So how can I encrypt the data before uploading?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我所做的唯一工作是加密用户名和密码并将加密值存储在 NSUserDefaults 中,然后解密。我不确定这个类是否有帮助,但它的加密方法还不错 SFHFKeychainUtils。
The only work I have done was encrypting user name and password and storing the encrypted value in the NSUserDefaults, and then decrypting it. I'm not sure if this class will help, but it's encryption methods are not too bad SFHFKeychainUtils.