SQLCipher is an open source extension to SQLite that provides transparent 256-bit AES encryption of database files.
1
vote
1answer
41 views
decryption using sqlcipher in iphone
Okey, so i am studying sqlcipher and preparing a document on it. so far study shows that how to encrypt database, i could not find how to decrypt database. Like that i have few more questions.
I found ...
1
vote
1answer
30 views
Is there a correct way to test whether a user-provided SQLCipher password is valid on Android?
I'm using SQLCipher for Android and am trying to determine the correct way to test whether a user-provided password is valid.
My first inclination was to just try and open the database with the given ...
0
votes
0answers
23 views
How to integrate commercial edition of SQLCipher into a Rubymotion application
I encrypt a plaintext.db to an encrypted db using sqlite3 binary shipped in the zip package #sqlcipher-export .
sqlite> ATTACH DATABASE 'encrypted.db' AS encrypted KEY 'testkey';
sqlite> SELECT ...
1
vote
1answer
40 views
Core Data Encryption Class
I'm trying to use this wonderful git inside my xcode project:
https://github.com/project-imas/encrypted-core-data
It's fully functional when creating a new empty sqlite db.
But, how can I use an ...
0
votes
0answers
14 views
SQLCipher build failed without error
I am trying to add SQLCipher to a project, but SQLCipher failed without an issue.
I am following the tutorial here: http://sqlcipher.net/ios-tutorial/
Xcode: 4.6.2
SQLCipher: 3.7.14.1
OpenSSL: 1.0.1e
...
1
vote
0answers
59 views
Android main thread getting locked in db operation
My application uses sqlcipher database. It uses cursor loader to query data from db
I am running into ANR. See below ANR trace
What I am trying to understand here is that why would a main thread ...
0
votes
0answers
30 views
undefined reference to `php_checkuid' compiling php 5.4 with sqlcipher
I am trying to compile php 5.4 with sqlcipher extension as described in http://sqlcipher.net/sqlcipher-for-php/ and getting this error when I run make after ./configure --with-openssl
...
0
votes
0answers
25 views
PHP SQLite3 no data received
I am trying to connect a sqlite3 database in php. Here's my code:
<?php
$db = new SQLite3("/var/www/testdb.sq3");
?>
now when I open it in browser, output is "No data Received" error on ...
0
votes
0answers
59 views
Can i use any kind of encryption to SQLite database in WinRT? [closed]
Can i use any kind of encryption to SQLite database in WinRT?
I cant find any specific info about SQLCipher version for WinRT
I found the SQLiteCrypt at http://sqlite-crypt.com/ in the home page ...
1
vote
0answers
48 views
SQLCipher for iOS, running on armv7s and armv devices
So I've had some headaches today trying to solve this one. I have SQLCipher integrated into an iOS application and before I go further, here are my architecture build settings:
As I understand it, ...
0
votes
1answer
69 views
Android - SQLCipher
This is my demo project
public class SQLDemoActivity extends Activity {
EventDataSQLHelper eventsData;
@Override
public void onCreate(Bundle savedInstanceState) {
...
0
votes
1answer
45 views
Compile SQLCipher on Mac OS 10.8 (64 bit)
When I compile SQLCIPHER on MacOS 64bit
./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2" LDFLAGS="/Users/administrator/Documents/openssl/lib/libcrypto.a"
I get ...
4
votes
0answers
43 views
Android SQCipher do I need to close the database?
I've read a lot about using a standard SQLiteDatabase in android and it seems that the best way is to keep one instance of SQLiteOpenHelper and never close the returned SQLiteDatabase object, nor ...
1
vote
0answers
25 views
SQLCipher on J2SE [closed]
I am trying to use SQLCipher in my desktop J2SE application. According to the SQLCipher website Java is supported. We currently use it in our Android application, but I have no idea where to start ...
1
vote
2answers
136 views
net.sqlcipher.database.SQLiteException: not an error:
I am getting this error in my android app db.
In SQLite database i am getting database query from my scripts in assets folder with the help of this code.
manager = ...
2
votes
1answer
66 views
How to test whether database is encrypted after adding SQLCipher?
After adding the SQLCipher libs,
and adding calls to
SQLiteDatabase.loadLibs(context);
How do I confirm that my app database is encrypted?
I tried accessing the .db via adb.
adb shell says ...
0
votes
1answer
45 views
How can i apply sqlcipher to JavaSE
I found sqlcipher is convenient to be used in Android development. But it's does not meet my need.Recently,i got a task to encypt a sqlite database in a project based on Java SE. The core of my ...
1
vote
2answers
393 views
How to decrypt SQLCipher encrypted file in android?
I have developed application using SQLCipher in android. It is secure way to protect your Database file into application. It is working fine for encryption, but i want decrypt the encrypted DB file ...
0
votes
1answer
64 views
queryforall() is not working in the case of ormlite and sqlcipher
i have used the sqlcipher and ormlite together. imported the net.sqlicipher and net.sqlicipher.database packages in my project and downloded the ormlite-android-sqlcipher.jar. and i have given the ...
0
votes
1answer
115 views
Using an SQLCipher database in a persistent store
I've gotten to the point where I can create an encrypted copy of my database with SQLCipher, now I'm trying to integrate it into my project. I've tried using the following code in my app delegate to ...
0
votes
0answers
26 views
sqlcipher Build in xcode
I am able to build sqlcipher for encrypted database in simulator but when I run on iphone device it can't find open-ssl headers.
I am unable to figure out what the problem is.
I have tried all set ...
0
votes
0answers
50 views
Encrypt Android database before publish
I want to encrypt my existing sqlite database before publish my app. It means i have a encrypted database in my app, and i decrypt it at run-time to get the data with sqlcipher.
My question is: how ...
0
votes
1answer
36 views
Which ciphers and modes does SQLCipher offers?
In SQLCipher I can change the cipher using PRAGMA cipher. The default cipher is AES-256-cbc. What are the supported ciphers and modes of operation?
0
votes
3answers
88 views
SQLCipher security
How exactly SQLCipher for Android Application works?
http://sqlcipher.net/design/
As i understood it all depends on PRAGMA key and this key should be saved on app, maybe in binary.
However this is ...
0
votes
0answers
92 views
SQLCipher for Qt (Mac). 'QSqlDatabase: QSQLCIPHER driver not loaded'
I followed the steps described here to build SqlCipher for Qt (Mac OSX). However when I try to use it, I get driver not loaded error. My Qt is built statically, not dynamically.
QSqlDatabase db = ...
0
votes
1answer
89 views
Attach Database SQLCIPHER
I want to know this code is necessary to use in SQLcipher.(using in android)
I am confused where and when should i use this if needed.
i want to encrypt my sqlite db.
ATTACH DATABASE 'encrypted.db' ...
0
votes
1answer
278 views
FMDB & sqlCipher not encrypting
In XCode Iam trying to get fmdm to use sqlCipher to encrypt a database. In my project I already have a compiling version of sqlCipher which I already have proved is working via sqlite3 calls. I have ...
1
vote
1answer
49 views
How other app can use same database in android .if databse is encrypted?
I have one question.
I have two app in my android sdk.
1 - first app with encrypted DB in SDCARD.
2- second app no database.
is it possible second app can access the encrypted DB .
if yes please ...
6
votes
1answer
160 views
Does SQLCipher allow to access Database by other app.(if DB in SD-CARD)
I am trying one thing in SQLCiper.
This thing is success in SQLite Database in SD-CARD
1- created one app firstApp. with Database in SD-CARD
2- created second app secondApp.
i am trying to read ...
1
vote
3answers
258 views
How to encrypt/decrypt in SQLCipher
I am struggling with How to encrypt/decrypt DB with SQLCipher.
In my this code from where i should start. and how to start.
Please Edit this code if possible.
I followed this link but not getting ...
0
votes
1answer
173 views
Android How to use SqlCipher with pre-bundled Sqllite Database?
I am creating an app with a prebundle database, i am using this tutorial to achieve the same,
http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/
Now how should ...
-1
votes
1answer
179 views
Convert Objective C to Rubymotion
SQLCIPHER sqlite encrypted iphone ios converting un-encrypted database to encrypted database
[fmdb open];
NSString *sel = @"SELECT count(*) FROM sqlite_master";
FMResultSet ...
0
votes
1answer
62 views
How can I get sqlcipher crypto source code and does sqlcipher support data recovery mechanism?
I just started looking into sqlcipher code base. I have two questions. First, I am interested in the logic/crypto part of sqlcipher source code. It looks to me that this part is implemented in C/C++ ...
0
votes
1answer
117 views
SQLCipher ATTACH encrypted database with custom cipher_page_size
I am using SQLCipher to encrypt SQLite databases. I seem to run into trouble to ATTACH an encrypted database with a custom cipher_page_size (different from the default value of 1024).
Here is my code
...
2
votes
1answer
171 views
Using FMDB + SQLCipher with Rubymotion?
I am using FMDB for handling a sqlite db in my application built using rubymotion.
I want to encryt the database with SQLCipher and I am facing issues when I try using SQLCipher methods such as ...
1
vote
2answers
189 views
Android sqlcipher attach database giving transaction error
Hi i'm using sqlcipher in an android app i'm trying to encrypt an unencrypted database so currently i'm getting an error saying (cannot attach database within transaction) so here's my code please ...
1
vote
2answers
224 views
SQLCipher in ios6 Undefined symbols for architecture armv7s (architecture already changed)
I have a problem building sqlcipher with xcode 4.5.2. Basically I followed the examples at http://mobileorchard.com/tutorial-iphone-sqlite-encryption-with-sqlcipher/ and ...
0
votes
1answer
112 views
custom ErrorHandler for SQLiteOpenHelper in sqlCipher
I started using sqlCipher for Android (ver) 2.1.1 and it works like charm on Android 4.0.3. However I found that the SQLiteOpenHelper class does not have the constructor that takes the custom Error ...
3
votes
1answer
339 views
encryption of an already existing database for SQLCipher
I use an already existing database in my App (see also 1). I encrypted the database with a Java Application.
In my App I try to read the encrypted_database with the following code, but I get a ...
0
votes
1answer
115 views
Android SQLCipher and DB from assets folder
At the moment, my sqlite db file is NOT encrypted and it's copied from the assets folder to the application data/data/mypackage/databases folder.
Now I want to add the SQLCipher libraries to my ...
3
votes
1answer
120 views
SQLDroid and encrypted Database
My App has an already existing Database. With "already existing" I mean that I don't create a Database in my App, I just connect to it and read the data.
To setup the connection I use SQLDroid.
Now I ...
0
votes
0answers
69 views
Compiling SQLCipher for PHP and Apache
I'm struggling to compile SQLCipher for PHP and Apache. I've followed the instructions here: http://sqlcipher.net/sqlcipher-for-php .
Each time I get a sqlite3.so file but the version listed in ...
1
vote
1answer
233 views
Android SQLcipher PRAGMA problems
Hey guys I am having a some problems with SQLcipher db for android
The documentation is not too descriptive so I could not figure it out.
I am trying to modify the default number of iterations on ...
2
votes
2answers
253 views
Setting password in SQLCipher
I want to create a new encrypted database with SQLCipher, I didn't really undestand how to set a key due to the following link: http://sqlcipher.net/sqlcipher-api/#key
As the documentation explains, ...
0
votes
0answers
369 views
using sqlcipher to encrypt already existing database and opening it on android
I encrypted my already existing sqlite database using following method given on sqlcipher documentation
$ ./sqlite3 plaintext.db
sqlite> ATTACH DATABASE 'encrypted.db' AS encrypted KEY ...
1
vote
2answers
232 views
Error trying to compile SQLCiper iOS project
I'm trying to use SQLCipher in my iOS Phonegap Application. I've already installed SQLCipher and it worked fine. I recently upgraded my hole environment to support iOS6 and added SQLCipher to my ...
1
vote
1answer
249 views
Encrypting db for SQLCipher Issues
I'm having problem with creating a new encrypted db.
I've done research regarding about this and these are some solutions that I have tried.
Using terminal
based on http://sqlcipher.net/design/
...
0
votes
1answer
192 views
Integrating SqlCipher with android application (on Windows)
I don't really understand from the following documentation: http://sqlcipher.net/sqlcipher-for-android/
What I should do, what are the steps? It seems like the instructions belong only to MAC users, ...
0
votes
0answers
29 views
sqlcipher-icu46l.dat file loading from assets to application data memory error in android
I am using sqlcipher where usually it loads icu46l.zip from assets to application data folder in runtime. For android 2.3 it work's fine but for android 2.2.1 lg optimus it fails loading icu46l.zip, ...
2
votes
1answer
241 views
sqlcipher crashing with “not an error” stacktrace
I am trying to use the sqlcipher (2.0.8) in my project for API 16 (Motorola Xoom 4.1.2) and getting the following stacktrace. I have the 3 so libraries in armeabi folder in libs and icudt46l.zip in ...

