[EMAIL PROTECTED] [Fri, Mar 12, 2004 at 12:19:16PM +0100]:
> now, i want to certify my programm. for this certification i need the
> encryption of the database files.

There are patches for very simple encryption scheme on Google. To use them,
basically patch & recompile.

You can buy support for sqlite, that includes encryption, here:

        http://www.hwaci.com/sw/sqlite/support.html

> if there is bad performance if i encrypt the database inside sqlite, would  
> it be a better idea to encrypt the file within my application using some  
> 3rd party programm, decrypt the file in a temp folder before using sqlite,  
> and encrypt again, after using the sqlite database file to a "storage  
> file".

That's insecure. If you want to do such things, you could as well just add a
few bytes to the beginning of sqlite file - the user won't be able to read
database with sqlite command-line tool - and such method has almost the same
level of security like the one you proposed.

-- 
Michal Pasternak :: http://pasternak.w.lub.pl :: http://winsrc.sf.net
"There's so much comedy on television. Does that cause comedy in the streets?" 
        -- Dick Cavett

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to