Reputation: 1
I want to make a mobile app using Flex:
Here are the prereqs for my question:
I need to save images to be displayed locally, say SD card. I need to encrypt them so that they can't be downloaded off the card.
The reason being is that after the app is installed, I want the content accessible whether the device has an internet/data connection or not - but the content is also the value of the application and is subject to copyright. I don't want the data to be easily accessed and copied.
Everything I've looked at, since I'm new to Flex, suggests this isn't possible:
Thanks for your help!
Upvotes: 0
Views: 319
Reputation: 12847
You should just store your 'copyrighted' material to an encrypted SQLite database.
Upvotes: 1