I have followed this tutorial How to implement SQLcipher in Android and implemented SQLcipher over my existing SQLite application, It works well. I was able to Insert, Fetch records from the database (Like normal SQLite application). However when i exported the database and tried to open it using SQlite Manager (I use Windows System) it asked me for password (Which is the actual need of encryption) but its not accepting the password which i used to encrypt.It keeps prompting the password.
Asked
Active
Viewed 563 times
0

Arunkarthick Nallasami
- 190
- 1
- 8
-
2You may want to verify what version of SQLCipher was used to create your database, versus the version of SQLCipher being used within SQLiteManager. If they are not the same, `PRAGMA` commands may be required to allow for reading the database file. You can contact SQLabs SQLiteManager here: http://www.sqlabs.com/contact.php – Nick Parker Feb 12 '16 at 12:59
-
Thank you @NickParker I will post back after trying with Older versions of SQLite Manager! Thanks – Arunkarthick Nallasami Feb 15 '16 at 02:56
-
Thank you so much @NickParker I have updated SQLcipher.jar used in my project and it worked!! – Arunkarthick Nallasami Feb 15 '16 at 03:55
-
Really working,Thankyou Mr.Arun and Mr.Nick. – MohanRaj S Feb 15 '16 at 11:00