Dears,
I started to use SQL Cipher community version as an encryption solution for my sqlite3 database a while ago. It worked perfectly until I tryed to open my encrypted database from an other environment.
I did some basic tests this way:
PRAGMA key = 'passphrase';
Create table test_table(field1 int(11) not null default '0');
insert into test_table(field1) values(1);
insert into test_table(field1) values(2);
insert into test_table(field1) values(3);
select * from test_table;
While I have no probleme to open a database in its creation environment, I cannot manage to open it from an other platform.
Here is some information about each environment
Red Hat Enterprise Linux ES release 4 (Nahant Update 4)
sqlite3 --version => 3.7.2
openssl version => OpenSSL 0.9.7a Feb 19 2003
gcc --version => gcc (GCC) 3.4.6 20060404 (Red Hat 3.4.6-3)
CentOS release 6.4 (Final)
sqlite3 --version => 3.7.14.1 2012-10-04 19:37:12 091570e46d04e84b67228e0bdbcd6e1fb60c6bdb
openssl version => OpenSSL 1.0.0-fips 29 Mar 2010
gcc --version => gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-3)
Unfortunatelly, I havn't found any reliable information on the web so far...
Thanks in advance, any help is appreciated!