Re: [sqlite] How to : encrypt the data of database table.

2011-09-14 Thread Michael Stephenson
Have a look at: http://sqlcipher.net -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Ashokkumar Gupta Sent: Wednesday, September 14, 2011 1:53 PM To: sqlite-users@sqlite.org Subject: [sqlite] How to : encrypt the data of

Re: [sqlite] How to : encrypt the data of database table.

2011-09-14 Thread Robert Myers
I added some functions to do that. I have ENCCOL, DECCOL, SIGCOL (signature creation), CHECKSIG Inserts and selects look something like this: INSERT INTO TABLE x(col1) VALUES(ENCCOL(1)) SELECT DECCOL(col1) FROM x; Nothing I want in an index can be encrypted, which is where SIGCOL comes in, I can

Re: [sqlite] How to : encrypt the data of database table.

2011-09-14 Thread Simon Slavin
On 14 Sep 2011, at 6:53pm, Ashokkumar Gupta wrote: > Does sqlite has encryption feature or not. If yes, how to do it and if No, > then is there any work around by which we can have that feature ?? The free version of SQLite has no encryption feature. There's a version with encryption which

[sqlite] How to : encrypt the data of database table.

2011-09-14 Thread Ashokkumar Gupta
Hi All, Does sqlite has encryption feature or not. If yes, how to do it and if No, then is there any work around by which we can have that feature ?? Regards, Ashokkumar ___ sqlite-users mailing list sqlite-users@sqlite.org