Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Data Protection / NSFileProtectionComplete - successfully supported through entitlements.plist?

I'm looking to encrypt user data in an app, and the NSFileProtection mechanism looks perfect for this.

This SO Question / Answer thread pointed me at the WWDC 2011 Video Securing iOS Apps which gave the 'too good to be true' tip of setting Data Protection across the app via entitlements (see from 33 minutes in).

So, I tried this for my iOS 5.x+ app, and ran into the problem where it complains about Invalid Entitlements.

I've configured Data Protection for the specific app via the iOS Provisioning Portal, and updated my app Provisioning, so in theory I should all be set, but I still get the error.

If I remove the specific FileProtectionComplete setting from the Entitlement, the app runs without the Invalid Entitlement error.

In investigating this, I also saw the some folk are getting their apps rejected (at the point they upload the binary) as this isn't supported (or deprecated?). Please note that I'm specifically asking about Data Protection, and not Passbook.

At this stage, I'm thinking, maybe it really is, 'too good to be true'. So, I'm about to give up on this magic entitlements flag, and instead use the programmatic method, of adding NSFileProtectionComplete as a write option.

However, before I do that, can anyone confirm they've been able to successfully add Data Protection just by using the Entitlements flag? Thanks.

like image 593
Snips Avatar asked Feb 06 '13 17:02

Snips


1 Answers

NSFileProtectionComplete isn't supported via entitlements anymore. Instead, it is specified in the provision profile.

I had the exact same problem you did. When I tried to build and run on a device, I got the following alert:

The executable was signed with invalid entitlements.

The entitlements specified in your application’s Code Signing Entitlements file do not match those specified in your provisioning profile.

(0xE8008016).

In the console, it manifested itself as this error:

May 6 16:18:13 XXXXX installd[54] : entitlement 'DataProtectionClass' has value not permitted by a provisioning profile

Eventually, I found the proper settings. You must log in to the developer portal and enable data protection on the app id associated with the provisioning profile you're using. See the image below:

enter image description here

like image 188
Heath Borders Avatar answered Oct 15 '22 11:10

Heath Borders