I am going to be storing some sensitive data in a mysql database. I already have the form on a standalone page with an SSL connection to insert it into the database. I would like to beef up the security a bit and encode the data while its sitting in the database. I am using php. Any suggestions? I was thinking about using base64, but im sure there are better ways todo it. Thanks for any tips!
Base64 is insecure. It is easy to decode. <?php echo(base64_decode('BASE64_STRING')); ?> If password use MD5. If text don't need encode.
like i said, its sensitive data that needs to be encrypted. but it obviously cant be encrypted so hard that it cannot be decrypted.