1

Is it possible?

I read about SQLCipher, but it seems to encrypt the whole database.

Is there a way to configure it to encrypt only specific parts of it?

A table or a field will do just fine.

shkschneider
  • 17,833
  • 13
  • 59
  • 112
user940016
  • 2,878
  • 7
  • 35
  • 56

2 Answers2

1

In the end I didn't need to use SQLite or any other techniques for encryption, because I found out I don't have to store the app client's secret at all, just the ID which is public.

user940016
  • 2,878
  • 7
  • 35
  • 56
0

You could use expand the DBHelper and run certain queries through a simple encryption util like the one noted in this answer.

Or rip out the CrypoHelper from android-passwordsafe written by Steven Osborn.

Community
  • 1
  • 1
scottyab
  • 23,621
  • 16
  • 94
  • 105