File system encryption for IOS?

笑着哭i 提交于 2019-11-29 02:54:21

问题


I know on Mac OS,we can use Macfuse for write a file system in user space,we can create a box encryption. I don't know on IOS has a framework,library like FUSE,Macfuse that i can write my file system for encryption/decryption file (possible mount on a directory/folder). Can anyone point me a solution?


回答1:


As for built-in iOS support, there are a number of options, varying from a per-file basis to encrypting the entire sandbox of your app. I suggest you read Protecting Data Using On-Disk Encryption in the iOS App Programming Guide.

All of these options, however, require the user to have a passcode set on the device. Older devices may not support file system encryption.

One of the options not mentioned in this documentation is to set the DataProtectionClass entitlement value to NSFileProtectionComplete. This will automatically protect all the files in your app's sandbox.

Finally, I suggest you watch the WWDC 2011 Video Securing iOS Applications ("Securing Application Data" on Apple's video page) and hear directly from Apple engineers about the best practices. This video covers pretty much everything that Apple offers.

edit:

According to people on the dev forums, the DataProtectionClass entitlement may not be working correctly in current iOS versions.




回答2:


You can set the NSFileProtection attribute on a file to have it encrypted using a key derived from the user's passcode.



来源:https://stackoverflow.com/questions/10004299/file-system-encryption-for-ios

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!