Re: [sqlite] Looking for a cryptographic library

2007-09-01 Thread Günter Greschenz
hi, after a long time being on a business trip, i finally came home and have now the chance to upload the sources to my webserver: http://greschenz.dyndns.org/sqlite.html these sources have never been in a productive system, i just implemented it for fun... what i want to say: i never

Re: [sqlite] Looking for a cryptographic library

2007-08-26 Thread RohitPatel9999
Please look at the following link, for few easy-to-use free simple code-packages (two or three) for Encryption and Decryption. http://www.efgh.com/software/ Rohit -- View this message in context: http://www.nabble.com/Looking-for-a-cryptographic-library-tf4298572.html#a12334506 Sent from the

Re: [sqlite] Looking for a cryptographic library

2007-08-25 Thread John Mason Jr
John Raymond Hurst wrote: > Search for the following on the web: > BeeCrypt, CryptoPP, OpenSSL > Ray Hurst > > [EMAIL PROTECTED] wrote: >> Hi all: >> I'm writing an application that uses SQLite to store user's data, and >> need a library to

Re: [sqlite] Looking for a cryptographic library

2007-08-24 Thread Raymond Hurst
Search for the following on the web: BeeCrypt, CryptoPP, OpenSSL Ray Hurst [EMAIL PROTECTED] wrote: Hi all: I'm writing an application that uses SQLite to store user's data, and need a library to crypt some stuff, including passwords and data. The goal is to crypt before insert and

Re: [sqlite] Looking for a cryptographic library

2007-08-21 Thread Günter Greschenz
ok, no problem... as soon as i am at home again from my business trip, i will move the sources to my webserver so everybody can download it... i will post a message with a link then. nice holidays :-) gg [EMAIL PROTECTED] wrote: Günter: Thanks for yours quick response. Really I'm

Re: [sqlite] Looking for a cryptographic library

2007-08-20 Thread Ulrich Telle
Hi, > I'm writing an application that uses SQLite to store user's data, > and need a library to crypt some stuff, including passwords and data. > The goal is to crypt before insert and decript after extract tha data, > so this last can't be seen by others who gain access to the SQLite > dataBase.

Re: [sqlite] Looking for a cryptographic library

2007-08-20 Thread Teg
Hello ajm, Monday, August 20, 2007, 8:20:37 AM, you wrote: azc> Hi all: azc> I'm writing an application that uses SQLite to store user's azc> data, and need a library to crypt some stuff, including passwords azc> and data. The goal is to crypt before insert and decript after azc> extract tha

Re: [sqlite] Looking for a cryptographic library

2007-08-20 Thread Günter Greschenz
hi, i've written some sqlite-functions to crypt (blowfish) or compress (bzip) data in sqlite: e.g. insert into blubs values (crypt('data','pwd')) or select from xyz where decompress(data) = 'blablabla' or select from xyz where data = compress('blablabla') ... but you have to wait

Re: [sqlite] Looking for a cryptographic library

2007-08-20 Thread Clay Dowling
There are two options: 1. D. Richard Hipp sells a version which encrypts the file on disk. This might be the fastest and easiest route. 2. OpenSSL offers as much encryption as you're likely to need if you're willing to deal with the paucity of documentation. Linux Journal had a couple of

[sqlite] Looking for a cryptographic library

2007-08-20 Thread ajm
Hi all: I'm writing an application that uses SQLite to store user's data, and need a library to crypt some stuff, including passwords and data. The goal is to crypt before insert and decript after extract tha data, so this last can't be seen by others who gain access to the SQLite dataBase.