Hi All,
I see that there is a method in net.sqlcipher.database.SQLiteOpenHelper
changePassword(string)
. Is there any specific process to do this ? Meaning, I tried this method which ultimately threw
file is encrypted or is not a database
when using onCreate(db) db object
or below error when using getWriteableDatabase(currentPassword)
net.sqlcipher.database.SQLiteException: unknown error
04-09 16:13:47.629: E/AndroidRuntime(23895): at net.sqlcipher.database.SQLiteDatabase.native_rekey(Native Method
)
Is this method intended to literally change the password of database at runtime ? Pls clarify