Recipe 18.11. Storing Encrypted Data in a File or Database


18.11.1. Problem

You want to store encrypted data that needs to be retrieved and decrypted later by your web server.

18.11.2. Solution

Store the additional information required to decrypt the data (such as algorithm, cipher mode, and initialization vector) along with the encrypted information, but not the key:

<?php /* Encrypt the data. */ $algorithm  = MCRYPT_BLOWFISH; $mode = MCRYPT_MODE_CBC; $iv = mcrypt_create_iv(mcrypt_get_iv_size($algorithm, $mode), MCRYPT_DEV_URANDOM); $ciphertext = mcrypt_encrypt($algorithm, $_POST['key'], $_POST['data'], $mode, $iv); /* Store the encrypted data. */ $st = $db->prepare('INSERT             INTO   noc_list (algorithm, mode, iv, data)             VALUES (?, ?, ?, ?)'); $st->execute(array($algorithm, $mode, $iv, $ciphertext)); ?> 

To decrypt the data, retrieve a key from the user and use it with the saved data:

<?php $row = $db->query('SELECT *                     FROM   noc_list                     WHERE  id = 27')->fetch(); $plaintext = mcrypt_decrypt($row->algorithm,                             $_POST['key'],                             $row['data'],                             $row['mode'],                             $row['iv']); ?> 

18.11.3. Discussion

The save-crypt.php script shown in Example 18-1 stores encrypted data to a file.

save-crypt.php

<?php function show_form() {     $html = array();     $html['action'] = htmlentities($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8');     print<<<FORM <form method="POST" action="{$html['action']}"> <textarea name="data" rows="10" cols="40">Enter data to be encrypted here.</textarea> <br /> Encryption Key: <input type="text" name="key" /> <br /> <input name="submit" type="submit" value="Save" /> </form> FORM; } function save_form() {     $algorithm  = MCRYPT_BLOWFISH;     $mode = MCRYPT_MODE_CBC;     /* Encrypt data. */     $iv = mcrypt_create_iv(mcrypt_get_iv_size($algorithm, $mode), MCRYPT_DEV_URANDOM);     $ciphertext = mcrypt_encrypt($algorithm,                                  $_POST['key'],                                  $_POST['data'],                                  $mode,                                  $iv);     /* Save encrypted data. */     $filename = tempnam('/tmp','enc') or exit($php_errormsg);     $file = fopen($filename, 'w') or exit($php_errormsg);     if (FALSE === fwrite($file, $iv.$ciphertext)) {         fclose($file);         exit($php_errormsg);     }     fclose($file) or exit($php_errormsg);     return $filename; } if (isset($_POST['submit'])) {     $file = save_form();     echo "Encrypted data saved to file: $file"; } else {     show_form(); } ?> 

Example 18-2 shows the corresponding program, get-crypt.php, that accepts a filename and key and produces the decrypted data.

get-crypt.php

<?php function show_form() {     $html = array();     $html['action'] = htmlentities($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8');     print<<<FORM <form method="POST" action="{$html['action']}"> Encrypted File: <input type="text" name="file" /> <br /> Encryption Key: <input type="text" name="key" /> <br /> <input name="submit" type="submit" value="Display" /> </form> FORM; function display() {     $algorithm  = MCRYPT_BLOWFISH;     $mode = MCRYPT_MODE_CBC;     $file = fopen($_POST['file'], 'r') or exit($php_errormsg);     $iv = fread($file, mcrypt_get_iv_size($algorithm, $mode));     $ciphertext = fread($file, filesize($_POST['file']));     fclose($fh);     $plaintext = mcrypt_decrypt($algorithm, $_POST['key'], $ciphertext, $mode, $iv);     echo "<pre>$plaintext</pre>"; } if (isset($_POST['submit'])) {     display(); } else {     show_form(); } ?> 

These two programs have their encryption algorithm and mode hardcoded in them, so there's no need to store this information in the file. The file consists of the initialization vector immediately followed by the encrypted data. There's no need for a delimiter after the initialization vector (IV), because mcrypt_get_iv_size( ) returns exactly how many bytes the decryption program needs to read to get the whole IV. Everything after that in the file is encrypted data.

Encrypting files using the method in this recipe offers protection if an attacker gains access to the server on which the files are stored. Without the appropriate key or tremendous amounts of computing power, the attacker won't be able to read the files. However, the security that these encrypted file provides is undercut if the data to be encrypted and the encryption keys travel between your server and your users' web browsers in the clear. Someone who can intercept or monitor network traffic can see data before it even gets encrypted. To prevent this kind of eavesdropping, use SSL.

An additional risk when your web server encrypts data as in this recipe comes from how the data is visible before it's encrypted and written to a file. Someone with root or administrator access to the server can look in the memory the web server process is using and snoop on the unencrypted data and the key. If the operating system swaps the memory image of the web server process to disk, the unencrypted data might also be accessible in this swap file. This kind of attack can be difficult to pull off but can be devastating. Once the encrypted data is in a file, it's unreadable even to an attacker with root access to the web server, but if the attacker can peek at the unencrypted data before it's in that file, the encryption offers little protection.

18.11.4. See Also

Recipe 18.13 discusses SSL and protecting data as it moves over the network; documentation on mcrypt_encrypt( ) at http://www.php.net/mcrypt-encrypt, mcrypt_decrypt( ) at http://www.php.net/mcrypt-decrypt, mcrypt_create_iv( ) at http://www.php.net/mcrypt-create-iv, and mcrypt_get_iv_size( ) at http://www.php.net/mcrypt-get-iv-size.




PHP Cookbook, 2nd Edition
PHP Cookbook: Solutions and Examples for PHP Programmers
ISBN: 0596101015
EAN: 2147483647
Year: 2006
Pages: 445

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net