[sqlite] System.Data.Sqlite Encryption Cipher

2019-01-23 Thread Mattock Paul extern
Hi, Would anyone be able to confirm what encryption cipher is used when SetPassword="" is set on database creation? Regards, Paul ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

[sqlite] System.Data.SQLite encryption

2015-08-06 Thread Marco Bambini
Anyone know which encryption algorithm is used in System.Data.SQLite? Seems like it doesn?t use the standard SEE sqlite extension. Thanks a lot. -- Marco Bambini http://www.sqlabs.com http://twitter.com/sqlabs http://instagram.com/sqlabs

[sqlite] System.Data.SQLite encryption

2015-08-06 Thread Kevin Benson
On Thu, Aug 6, 2015 at 4:16 AM, Marco Bambini wrote: > Anyone know which encryption algorithm is used in System.Data.SQLite? > Seems like it doesn?t use the standard SEE sqlite extension. > https://www.mail-archive.com/sqlite-users at sqlite.org/msg87770.html -- -- -- --???--

Re: [sqlite] system.data.sqlite & encryption

2010-02-08 Thread Shane Harrelson
I've taken a cursory glance at the encryption support in the system.data.sqlite C# wrapper from http://sqlite.phxsoftware.com It does appear, that you could, with a little effort, modify the wrapper to work with the SEE extension. I don't see anything in the wrapper that would make it

Re: [sqlite] system.data.sqlite & encryption

2010-02-08 Thread Shane Harrelson
I've taken a cursory glance at the encryption support in the system.data.sqlite C# wrapper from http://sqlite.phxsoftware.com It does appear, that you could, with a little effort, modify the wrapper to work with the SEE extension. I don't see anything in the wrapper that would make it

Re: [sqlite] system.data.sqlite & encryption

2010-02-06 Thread Simon Slavin
On 7 Feb 2010, at 12:21am, Sylvain Pointeau wrote: > I already recompiled it, but integrating the encryption extension is again > another step. > how to be sure of that before to buy the extension ($2'000) ? Do what the documentation of the extension says: email the company that issues it

Re: [sqlite] system.data.sqlite & encryption

2010-02-06 Thread Sylvain Pointeau
I already recompiled it, but integrating the encryption extension is again another step. how to be sure of that before to buy the extension ($2'000) ? Sylvain On Sat, Feb 6, 2010 at 1:44 AM, Shane Harrelson wrote: > Yes. If you're willing to compile (and possibly

Re: [sqlite] system.data.sqlite & encryption

2010-02-05 Thread Shane Harrelson
Yes. If you're willing to compile (and possibly modify) the system.data.sqlite libraries for yourself, it should work. -Shane On Fri, Feb 5, 2010 at 5:05 AM, Sylvain Pointeau wrote: > I posted on this forum > http://sqlite.phxsoftware.com/forums/p/2170/8904.aspx

Re: [sqlite] system.data.sqlite & encryption

2010-02-05 Thread Sylvain Pointeau
I posted on this forum http://sqlite.phxsoftware.com/forums/p/2170/8904.aspx The answer was: "I'm afraid not. This is an open-source project, and the encryption Dr. Hipp sells is not open source." but as the license of system.data.sqlite is "Released to the public domain, use at your own risk!"

Re: [sqlite] system.data.sqlite & encryption

2010-02-01 Thread Shane Harrelson
I think you should probably ask this question on the System.data.sqlite support forums at http://sqlite.phxsoftware.com/forums I'm not familiar with enough with their ADO .NET implementation to answer your question. -Shane On Sun, Jan 31, 2010 at 11:54 AM, Sylvain Pointeau <

[sqlite] system.data.sqlite & encryption

2010-01-31 Thread Sylvain Pointeau
Hi all, I am using System.data.sqlite from my .NET project, but I am planning to access my db from C/C++ and C# / C++/CI The point is that I want an encryted database, and I plan to use the extension from http://www.hwaci.com/sw/sqlite/prosupport.html#crypto how to use / implement this exension