Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: AdrianSRUPosted on 2005-10-19 at 17:36:44ID: 15120945
I think that it is overkill to encrypt the actual data in your database. There are other ways to secure your data that MySQL supports directly:
refman/4.1 /en/grant. html). This will make sure that unauthorized users cannot view restricted data. refman/4.1 /en/secure -create- ce rts.html). This will make sure that nobody can intercept and decode the data between the client and server.
1. Restrict user privileges to tables/columns that contain sensitive data (http://dev.mysql.com/doc/
2. Use only SSL connections (http://dev.mysql.com/doc/
3. Implement permission restrictions on the mysql/data directory on the server. This will have to be done through your operating system.
If you implement these items, then your data will be much more protected than your can make it by encrypting the data in the tables.
--Adrian