Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

android uses sqlite database to store data, I need to encrypt the sqlite database, how can this be done? I understand that application data is private. However I need to explictly encrypt the sqlite database that my app is using.

share|improve this question
I have encrypted all the values even primary key and decrypted. Its slow but its working. What would be the optimal scenario. – AZ_ Feb 24 '11 at 9:40

5 Answers

SQLCipher is an SQLite extension that provides transparent 256-bit AES encryption of database files.

Earlier sqlcipher which is Open Source Full Database Encryption for SQLite was not available for android. But now its available as alpha release for android platform. Developers have updated the standard android application'Notepadbot' to use SQLCipher.

So this is definitely the best and simplest option as of now.

share|improve this answer
SQLCIpher for Android is now part of the offical SQLCipher project: sqlcipher.net/sqlcipher-for-android – Seppl Sep 6 '12 at 7:37
is it free to use or one must buy license? I couldn't find precise info.. :S – Ewoks Nov 16 '12 at 12:40
1  
License information is available on github page github.com/sqlcipher/android-database-sqlcipher/blob/master/… – vaichidrewar Nov 16 '12 at 15:56

If the database will be small, then you could gain a small amount of security by decrypting the whole file to a temp location (not on sd card), then re-encrypting when you've closed it. Problems: premature app death, ghost image on media.

A slightly better solution to encrypt the data fields. This causes a problem for WHERE and ORDER BY clauses. If the encrypted fields need to be indexed for equivalence searching, then you can store a cryptographic hash of the field and search for that. But that doesn't help with range searches or ordering.

If you want to get fancier, you could delve into the Android NDK and hack some crypto into C code for SQLite.

Considering all these problems and partial solutions, are you sure you really need a SQL database for the application? You might be better off with something like a file that contains an encrypted serialized object.

share|improve this answer

Why not just encrypt that data going into the database and only store the key for some-odd amount of time before having the user re-enter it?

Check out http://www.androidsnippets.org/snippets/39/

share|improve this answer
3  
how to encrypt the schema then? the schema would still be visible to intruder – user121196 Feb 4 '10 at 23:40

You can certainly have a encrypted SQLite database on Android. You can't do it with the out of the box Java access, however. Instead, compile SQLite via the NDK with a encryption codec such as that already linked or from wxSQLite (a nice free codec is enclosed in that package).

You could then write your own Java wrapper around the whole thing.

Hopefully Google adds support for encryption in the future.

share|improve this answer

http://sqlite-crypt.com/ may help you to create an encrypted database, though I've never used it on android seems to be possible with the source code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.