Illuyankas
Illuyankas

Reputation: 150

Android encryption database

I search a solution for encrypt a database in Android. I know that exist a library as name SQLCipher but that library doesn't work for version upper than Android 4.1 that's why i ask you for an other library that encrypt a database or a solution for make that (i know i can encrypt my string data one by one but i search for encrypt the entire database like in SQLCipher). If possible give me a sample that used your library or your solution that was all time better than a big explanation :).

Thanks in advance for your solution.

Upvotes: 0

Views: 1212

Answers (2)

Illuyankas
Illuyankas

Reputation: 150

Finally solution is to used SQLCipher and thats work fine for all Android for saw why thats not work in my case just look this post Android error with sqlcipher on version android 4.2.2

Upvotes: 1

CommonsWare
CommonsWare

Reputation: 1006539

I know that exist a library as name SQLCipher but that library doesn't work for version upper than Android 4.1

This is incorrect. It works perfectly fine on Android 4.2 and 4.3. In fact, I just tested two of my SQLCipher for Android samples on a Nexus 10 running Android 4.3 while typing up this answer, and I had no problems.

Upvotes: 1

Related Questions