简体   繁体   中英

Secure Android to Online Database connection

I am working on an Android project where I will have to edit (only decrement) data from an online database. I want to stop anybody from changing the values by themselves. It should be possible only through the Programming.

In short my online database would contain the Balance of a particular account. While using some of my services in my app, the balance will get deducted. App should only be able to deduct the value. I dont want any hacker to study my code and be able to increment the balance by any mean.

Is there any possible mean to add security to database. The database should be very secure.

If you want security over network, Do it using existing and well implemented secure protocol, eg TLS/SSL. openssl is one good implementation: http://www.openssl.org/

If you even want data to be secure on the server, even the root cannot access it, check this: http://css.csail.mit.edu/cryptdb/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM