As IPA structure is just a zipped file containing compiled codes & media contents like images & audio, how can I protect the contents from being extracted and stolen by others? Is there any encryption I can add into the IPA?
|
|
|
This answer mentions that the application is already encrypted by the time it gets onto your users' devices: Does Apple modify iOS application executables on apps submitted to the App Store? Sorry, that's only the application binary. The other media are not encrypted, and no, there's no way to encrypt the .ipa. You could try encrypting your images and other media on your system, providing a bunch of application code to decrypt those resources when the app runs, and then your decryption code will become a part of the encrypted application binary. You can't submit an encrypted IPA though, it needs to be the file directly output from Xcode. In response to your comment, the one I've used is CommonCrypto. You need to Simple usage example of the above category:
IMPORTANT NOTE HERE: IF someone was to run the Update: You should check out To encrypt/decrypt
|
|||||||||||||
|
|
Here is a project that obfuscates the resources of various type with key bundled within an application and allows you to work with NSString, NSData and UIImage simply: |
|||
|
|