vote up 5 vote down star
1

I am writing an application which reads information from am xml plist in the bundle upon startup. The information in the plist has been compiled through many days of work and I would like to ensure that it cannot be extracted easily from the app bundle by another party after distribution. Is there any way to secure or encrypt xml plists that one includes within your app bundle?

Any help would be greatly appreciated please.

flag

It’s a minor detail, but if you’re embedding a plist that’s not intended for human consumption, use the more efficient binary plist format. You can convert with plutil -convert binary1 file.plist. – Ahruman Sep 23 at 15:20

1 Answer

vote up 4 vote down check

There is no built-in encryption function in plist. Many people treats the compression as encryption.

Here is what I would do,

  1. Make up an encryption key.
  2. write a tiny program to encrypt the plist into a binary file using SecKeyEncrypt().
  3. Put the binary file in the bundle.
  4. In the app, hide the key somewhere. For example, store them as pieces so it's not easy to find from a dump.
  5. When you startup the app, read the binary file from bundle, decrypt it using SecKeyDecrypt() using the key and store the cleartext in memory.
  6. The cleartext is the plist and load the plist from the memory.

This is still considered obfuscating because key is available in your bundle but it will be hard enough to deter most casual hackers.

link|flag
Thank you, that is very helpful. – JK Sep 23 at 11:44
As far as the encryption part, check out this SO question for ideas: stackoverflow.com/questions/1417893/… – Quinn Taylor Sep 23 at 15:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.