Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Securing xml plists in Cocoa / Objective C

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.

like image 204
RunLoop Avatar asked Sep 23 '09 10:09

RunLoop


1 Answers

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.

like image 177
ZZ Coder Avatar answered Oct 31 '22 00:10

ZZ Coder