You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An organization has ordered a build of the new Cordova SQLite plugin design (#3) with SQLCipher on Android. An early preview of the progress is available here:
A general observation of the SQLCipher C library is that if an application opens a database and then uses sqlite3_key() to use a password, SQLCipher will do nothing with the password until the application attempts to read or write data. This can make it a little tricky to test password error handling.
I think a stranger observation is that if an application opens a new database and then uses sqlite3_key() to set the password, the database would have zero size until the application starts writing data. I think this makes the password error testing even more tricky to get right.
updated:
An organization has ordered a build of the new Cordova SQLite plugin design (#3) with SQLCipher on Android. An early preview of the progress is available here:
It is actually using JNI/JDK source code from here:
adding reference to sqlcipher/sqlcipher#125 - simpler version for Android
The text was updated successfully, but these errors were encountered: