I\'m developing an application which will be storing user sensitive data. My issue is using other applications that a user can view that stored data with. Then I need to pro
You could encrypt the data using a user specific salt retrieved from your server. That way, even with root access you would need the users salt to decrypt the database. Since you have control over the salt you provide an extra layer of security, however, your user will always need a network connection to access their data.