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,185
  • 13
  • 56
  • 110
user940016
  • 2,798
  • 7
  • 34
  • 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,798
  • 7
  • 34
  • 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
  • 22,951
  • 15
  • 93
  • 103