Re: Database Encryption

2002-03-03 Thread BD
Craig, At 10:02 AM 3/3/2002 , you wrote: >In an effort to encrypt private data in my database (national id numbers, >credit card numbers, passwords) I have had to resort to writing code in my >application using the Blowfish algorithm. Is there any facility for doing >this within MySQL (on Win

Database Encryption

2002-03-03 Thread Scalper
In an effort to encrypt private data in my database (national id numbers, credit card numbers, passwords) I have had to resort to writing code in my application using the Blowfish algorithm. Is there any facility for doing this within MySQL (on Windows)? Any third party tools out there? For

RE: No Database Encryption

2001-12-12 Thread Duncan Maitland
> It's only dangerous if a customer can trick your web frontend > into displaying the output of "SELECT * FROM USERS", for > example. If the frontend only uses hardcoded queries, or > quotes every user-supplied parameter, there's no problem. In > fact, you need the password in plaintext to s

Re: No Database Encryption

2001-12-12 Thread Doug Thompson
Yes. 1. Read the manual sections concerning setting up new accounts with special emphasis on passwords. 2. When you thoroughly understand those matters, take the issue to the system administrator and/or management. hth, Doug Only two things are infinite, the universe and human stupidity, an

Re: No Database Encryption

2001-12-12 Thread Dan Nelson
In the last episode (Dec 12), James McLaughlin said: > The new programmer for our company is not using the dataType > "password" or any encryption what so ever for our user accounts > (accounts that our customers use for getting into our system) in our > database. > > Instead he is using the VarC

Re: No Database Encryption

2001-12-12 Thread tc lewis
it's not all that dangerous. it just means that you can read your users' passwords. anyone who can read that db table can become any of your users. password fields are just another safeguard against a "just in case someone gets read access to this" scenario. they also serve to provide more pr

No Database Encryption

2001-12-12 Thread James McLaughlin
The new programmer for our company is not using the dataType "password" or any encryption what so ever for our user accounts (accounts that our customers use for getting into our system) in our database. Instead he is using the VarChar dataType. Can someone explain to me how I can exploit this