Features

Using AES encryption in MySQL and PHP

Using AES encryption in MySQL and PHP

Copyright © TechPad.co.uk

An easy-to-follow guide to using MySQL's new AES_ENCRYPT and AES_DECRYPT functions to encrypt and decrypt data using a salt with PHP.

According to MySQL, AES encryption (Advanced Encryption Standard) is the best method available for providing reversible encryption and decryption in SQL.

Formerly known as Rijndael, the AES_ENCRYPT and AES_DECRYPT functions are now built-in to MySQL so you can take user data, encrypt it with a salt, store it in your database, then extract it again later and decrypt it.

Define your salt

You'll need to apply a salt to the data that you encrypt. This is a special code that the encryption algorithm uses which works a bit like a key.

You'll need to provide the exact same key back to decrypt the data, and if an attacker should gain access to your database, they won't be able to decipher it without knowing the salt.

If you define your salt in PHP like this, you'll be able to pull the constant into your SQL statements more easily. 

if(!define('SALT'))
define('SALT','897sdn9j98u98jk');

Encrypting data with AES_ENCRYPT

To insert data into your MySQL database and encrypt the sensitive information, you'll need to issue a command like this, along with your salt. 

INSERT INTO your_table (username,email,shoesize)
VALUES ('$username',
AES_ENCRYPT('$email','".SALT."'),
AES_ENCRYPT('$shoesize','".SALT."'));

This will insert the username in plain text, as it's non-sensitive, but encrypt the user's email and shoesize, to prevent them from being viewed without access to the salt. 

Decrypting data with AES_DECRYPT

At some point, you're going to need to access some of the data you stored in its encrypted form, and you can do this very easily using the AES_DECRYPT function of MySQL and the same salt you used when you encrypted the data and inserted it. 

SELECT username, AES_DECRYPT('email','".SALT."') AS email,
AES_DECRYPT('shoesize','".SALT."')
AS shoesize FROM your_table WHERE username ='fred';

If you SELECT the encrypted data without running it through AES_DECRYPT or with the wrong or no salt, you'll get an ugly, unreadable string of odd characters. This means if an attacker manages to access your database, but does not have access to your server to view the salt, they won't be able to read any of the data you've stored. At least, not without going to great lengths to try and decrypt the data. 

Updating encrypted data with AES_ENCRYPT

Updating encrypted records is very similar to insertion. Basically, you just apply the same salt and re-issue the AES_ENCRYPT command to re-encrypt the data again and lock it away safely.

UPDATE your_table SET email = AES_ENCRYPT('$email','".SALT."'), shoesize = AES_ENCRYPT('$shoesize','".SALT."') WHERE username= 'fred';

Searching encrypted data using both AES_ENCRYPT and AES_DECRYPT

Things get a little bit more complicated when you need to search for data that's encrypted and then display it in its unencrypted form.

Say you wanted to search for a user using their email address, but you'd encrypted that in the database. First, you'd need to encrypt the email address you want to search for with AES_ENCRYPT and your salt, and then you'd need to use AES_DECRYPT to ensure that MySQL decrypted it, returning it in a readable format. 

You can achieve this, using code a bit like this:

SELECT user_username, 
AES_DECRYPT(email,'".SALT."') AS email,
AES_DECRYPT(shoesize,'".SALT."') AS shoesize 
FROM your_table WHERE
(email = AES_ENCRYPT('$q','".SALT."'));

That's pretty much all there is to it. You can find out more about the AES encryption functions on the MySQL website.



Published: TechPad.co.uk Thursday 24 December 2009, 9:20 pm
Views: 17,827 times
Filed under: PHP MySQL encryption AES_ENCRYPT AES_DECRYPT

(No votes yet)



Login to leave your comments

Please login

Username
Password
  Remember me
Reset password | Send activation code

Related items

Using PHP's DOMDocument to scale images
Using PHP's DOMDocument to scale images
How to use PHP's built-in DOMDocument clas... 5 (1 vote)
Protecting against SQL injection and XSS attacks in PHP
Protecting against SQL injection and XSS attacks in PHP
Learn how to write PHP code that is protec... 5 (1 vote)
How to add a new user to MySQL server
How to add a new user to MySQL server
The command line fu you need to know in or... no votes (No votes)
Create an encrypted USB drive for Ubuntu Linux
Create an encrypted USB drive for Ubuntu Linux
Protect the sensitive data on your USB key... no votes (No votes) *1 comment
Adding Google Analytics user defined variables with PHP
Adding Google Analytics user defined variables with PHP
You can now use the Google Analytics track... no votes (No votes)

Recently added

Manipulating links with jQuery
Manipulating links with jQuery
Here's a quick tutorial showing how you ca... no votes (No votes)
How to issue new passwords in vBulletin
How to issue new passwords in vBulletin
If your vBulletin site has been the subjec... no votes (No votes)
How to add a new user to MySQL server
How to add a new user to MySQL server
The command line fu you need to know in or... no votes (No votes)
How to install Bazaar version control
How to install Bazaar version control
Follow these simple steps to get you up an... no votes (No votes)

Most viewed


Recent comments


Analytics sites

Excellent Analytics free Excel plugin
Excellent Analytics free Excel plugin
Excellent Analytics is a si...
Visual Revenue blog
Visual Revenue blog
Interesting web analytics, ...
Web Analytics Demystified
Web Analytics Demystified
Eric T. Peterson is the fou...