Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Encrypt Sqlite with Qt using some open source solution

My application is using Qt 4.6 to access sqlite. Now I have a requirement to encrypt sqlite database. On searching i do find SEE but this is licensed.

My problem is: I want to encrypt sqlite database using QT or some open source solution that is compatible with Qt. Do tell me some link or tutorial if you know.

like image 362
ashmish2 Avatar asked Aug 05 '11 10:08

ashmish2


Video Answer


1 Answers

Sqlcipher SQLite extension is what you need. Look into QTCentre about building sqlite version which supports encryption out of the box. The main benefit of this version that it provides standard qt sql interface via custom plugin. Also, it is BSD-like licenced.

like image 171
Raiv Avatar answered Oct 06 '22 08:10

Raiv