File system encryption for IOS?

Go To StackoverFlow.com

11

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?

2012-04-04 02:46
by The Bird
iOS (maybe new with 5.x) has a facility for semi-automatically encrypting stored files. I don't know anything about it, though - Hot Licks 2012-04-04 03:14
Here is an intro about ios file protection - Panagiotis 2012-04-04 11:18


10

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.

2012-04-04 11:49
by Mike Weller
I want to write a file system to reading/writing encrypted file.So i want user don't aware and get encrypted file.So i think NSFileProtection cannot apply in this case.Thanks - The Bird 2012-04-09 16:37


6

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

2012-04-04 11:29
by NoName
Ads