Maulik Pankhanya
Maulik Pankhanya

Reputation: 51

Any Ways to Protect Graphics / Sounds Data in IPA?

So You can Download IPA and can Extract Images and Sounds and some other Stuff. So My Question is . Is There any way to Protect it so no one can extract images from IPA ? I tried googling and research but what i got to know is you can Encrypt Database.

Upvotes: 2

Views: 153

Answers (1)

zaph
zaph

Reputation: 112855

Encrypt the images prior to putting them in the project and decrypt when used. The key is the weak point but the files will be protected from anyone simple copying them from the ipa. The key could just be in the code or obtained dynamically from the server on first launch among other options depending on the level of security you require.

You can use Common Crypto AES encryption directly or use a library such as RNCryptor.

Upvotes: 2

Related Questions