Re: [sqlite] How can i encrypt my database file ?

2018-01-06 Thread Nocs ...
Thank you for your response Ulrich From: sqlite-users on behalf of Ulrich Telle Sent: Saturday, January 6, 2018 5:40:38 PM To: SQLite mailing list Subject: Re: [sqlite] How can i encrypt my database file ? > My first steps i made for encyption nowadays

Re: [sqlite] How can i encrypt my database file ?

2018-01-06 Thread Ulrich Telle
My first steps i made for encyption nowadays is that i read and test some free encryptions around the net such as sql cipher and some others but i have some doubts if this is correct cause inside the sqlite3.cpp in the section that i define SQLITE_HAS_CODEC it says that is not in the public dom

Re: [sqlite] How can i encrypt my database file ?

2018-01-06 Thread Ulrich Telle
My first steps i made for encyption nowadays is that i read and test some free encryptions around the net such as sql cipher and some others but i have some doubts if this is correct cause inside the sqlite3.cpp in the section that i define SQLITE_HAS_CODEC it says that is not in the public dom

Re: [sqlite] How can i encrypt my database file ?

2018-01-06 Thread Ulrich Telle
My first steps i made for encyption nowadays is that i read and test some free encryptions around the net such as sql cipher and some others but i have some doubts if this is correct cause inside the sqlite3.cpp in the section that i define SQLITE_HAS_CODEC it says that is not in the public dom

[sqlite] How can i encrypt my database file ?

2018-01-06 Thread Nocs ...
Hello and happy new year. After long time i am using sqlite in a free and closed code application i would like to make my database file encrypted. The database is created through this program and also is updated through it without the user to know about its internal functions. My first steps