On 12 Feb 2018, at 8:03am, crest iOS <crestiost...@gmail.com> wrote:

> I want to know that Table-Level Encryption is possible in SQLite or not.

It is a bad idea to do table-level encryption in SQLite because indexes are 
stored separately from the table.  Your data in the table might be encrypted 
but data in index columns would be stored in plaintext.

Encryption in SQLite is usually done over the entire databases and encrypts not 
only the data but the names of the tables and other information.

For one method of database encryption please see

<https://www.hwaci.com/sw/sqlite/see.html>

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to