Link to home
Start Free TrialLog in
Avatar of rbudj
rbudjFlag for United States of America

asked on

Storing Social Security Number in MySql

Using PHP and MySql and Dreamweaver CS5

I have a simple online multipage form passing variables via $_SESSION. Pages are using SSL. The only sensitive data is the guests Social Security Number. The form data is being inserted into the table. What is the best way (considering complexity) to encrypt the number in the database? I've used something dealing with a Salt or something before, I will be researching that next.
ASKER CERTIFIED SOLUTION
Avatar of ralmada
ralmada
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rbudj

ASKER

Thanks. I AM using SSL but the database itself needs to be encrypted. I'm looking further into incorporating AES_ENCRYPT. Thanks again.