Sqlite database security

前端 未结 6 879
无人共我
无人共我 2020-12-15 04:48

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

6条回答
  •  庸人自扰
    2020-12-15 05:41

    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.

提交回复
热议问题