Re: [sqlite] Database Encryption (System.Data.SQLite)

2019-04-01 Thread Paul
As I was using the unchanged nuget package I assumed it would be a “default” encryption as it isn’t something I compiled or changed? Tithras Sent from my iPhone > On 1 Apr 2019, at 15:33, Simon Slavin wrote: > >> On 1 Apr 2019, at 3:30pm, Mattock Paul wrote: >> >> Thanks, do we have any

Re: [sqlite] Database Encryption (System.Data.SQLite)

2019-04-01 Thread Simon Slavin
On 1 Apr 2019, at 3:30pm, Mattock Paul wrote: > Thanks, do we have any idea on what Algorithm is used? Since more than one algorithm is available, this would be something selected by the software you were using. So I can only suggest you read the source code for the bit of the software which

Re: [sqlite] Database Encryption (System.Data.SQLite)

2019-04-01 Thread Mattock Paul
Simon, Thanks, do we have any idea on what Algorithm is used? Tithras > On 01 April 2019 at 14:28 Simon Slavin wrote: > > > On 1 Apr 2019, at 1:15pm, Mattock Paul wrote: > > > Just to confirm I am using the nuget package (System.Data.SQLite v1.0.109.2) > > This uses PCL Crypto, which in

Re: [sqlite] Database Encryption (System.Data.SQLite)

2019-04-01 Thread Simon Slavin
On 1 Apr 2019, at 1:15pm, Mattock Paul wrote: > Just to confirm I am using the nuget package (System.Data.SQLite v1.0.109.2) This uses PCL Crypto, which in turn accesses crypto implemented in PCL itself rather than implmenting its own. A list of crypto methods it supports, tabled against OS,

Re: [sqlite] Database Encryption (System.Data.SQLite)

2019-04-01 Thread Mattock Paul
Jim, Thanks for the information. Just to confirm I am using the nuget package (System.Data.SQLite v1.0.109.2) and my sqlite database is encrypted without any additional modules associated with my release. A code snippet of the section which handles the initial database encryption is as

Re: [sqlite] Database Encryption (System.Data.SQLite)

2019-04-01 Thread Jim Borden
From looking at the System.Data.SQLite source (someone please correct me if I am wrong) It would use whatever cipher was provided to it via the native library that it was deployed with. It's designed with sqlite encryption extension in mind but I suppose in theory it would work with any

[sqlite] Database Encryption (System.Data.SQLite)

2019-04-01 Thread Mattock Paul
All, Would anyone be able to confirm what cipher is used for encrypting an SQLite database when password="" is used? I have seen old posts online which state its 128bit but assume this is now wrong and am after completing a design document which requires I state the encryption level.

Re: [sqlite] database encryption

2005-02-27 Thread Clay Dowling
Olivier Singla wrote: This said, I was wondering if anybody would like to share with me his/her experience with this extension. Also, any other solution available ? You might want to read the SQLite web site pages about support. Dr. Hipp offers an encrypted version of the database in exchange for

Re: [sqlite] database encryption

2005-02-27 Thread Ulrik Petersen
Hi, Olivier Singla wrote: Hi, I am planning to use sqlite in a PowerPC embedded device (using of course Linux). So far I am extremely happy (and impressed!) by sqlite. The only thing I think I am missing is a way to protect the database (not only the data by themself, but also the database

[sqlite] database encryption

2005-02-27 Thread Olivier Singla
Hi, I am planning to use sqlite in a PowerPC embedded device (using of course Linux). So far I am extremely happy (and impressed!) by sqlite. The only thing I think I am missing is a way to protect the database (not only the data by themself, but also the database schema). There is a project