Re: Data Encryption

2001-08-25 Thread Michael
, if the key is ever comprimised you are in trouble. chuck - Original Message - From: Elizabeth Alderton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 9:26 AM Subject: Re: Data Encryption Dear Chuck Your idea has given me an idea. How about: When

Re: Data Encryption

2001-08-23 Thread Elizabeth Alderton
Dear Chris I'm sorry to be really ignorant, but what is VPN? Any suggestions are welcome! Regards Elizabet -Original Message- From: Chris Lathem [EMAIL PROTECTED] To: Elizabeth Alderton [EMAIL PROTECTED] Date: 22 August 2001 21:21 Subject: Re: Data Encryption What about talking

Re: Data Encryption

2001-08-23 Thread Elizabeth Alderton
wouldn't need SSH or SSL then would we? Or is that too simplistic? Regards Elizabeth -Original Message- From: Charles Williams [EMAIL PROTECTED] To: Elizabeth Alderton [EMAIL PROTECTED]; [EMAIL PROTECTED] [EMAIL PROTECTED] Date: 22 August 2001 21:30 Subject: Re: Data Encryption I use

Re: Data Encryption

2001-08-23 Thread Jeremy Zawodny
On Thu, Aug 23, 2001 at 08:25:56AM +0100, Elizabeth Alderton wrote: Dear Chris I'm sorry to be really ignorant, but what is VPN? Any suggestions are welcome! Virtual Private Network. What he's getting at is that you could try and setup a secure (encrypted) tunnel of some sort between your

Re: Data Encryption

2001-08-23 Thread Jason G.
If I am not mistaken... You could write a script that uses PHP to look at the database, create a file, and download it to the browser over an HTTPS connection (128 bit ssl). You would need some sound security protecting access to the download page. You could use the same script to accept a

Re: Data Encryption

2001-08-23 Thread Charles Williams
Alderton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 9:26 AM Subject: Re: Data Encryption Dear Chuck Your idea has given me an idea. How about: When we actually collect the data, we encrypt it so that it is actually held in mysql in an encrypted form

RE: Data Encryption

2001-08-23 Thread Carsten H. Pedersen
From: Elizabeth Alderton [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 23, 2001 9:26 AM ... Dear Chuck Your idea has given me an idea. How about: When we actually collect the data, we encrypt it so that it is actually held in mysql in an encrypted form? Then it can speed up

Re: Data Encryption

2001-08-23 Thread Chris Lathem
: 601.605.9225 - Original Message - From: Harald Fuchs [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 7:59 AM Subject: Re: Data Encryption In article 010801c12ba5$9cb52540$e92a7dc2@default, Elizabeth Alderton [EMAIL PROTECTED] writes: Dear Chuck Your idea

Re: Data Encryption

2001-08-22 Thread Charles Williams
I use a random key generating SHA-1 js module for all my encryption for passwords. You could do something the same using a fixed key system so that once it's on the server you can decrypt it. However, I haven't tried it yet with SHA-1 so don't know how difficult or sane it would be to try.

Re: Data Encryption

2001-08-22 Thread Tonu Samuel
On 22 Aug 2001 17:35:58 +0100, Elizabeth Alderton wrote: If I do a SELECT query to bring data down to a PC (this is being done through Delphi) how can I encrypt the data so that it comes safely? Equally when doing UPDATE and INSERT in the other direction I would want to encrypt the data.