Encryption/Decryption ===================== Phalcon provides encryption facilities via the :doc:`Phalcon\\Crypt <../api/Phalcon_Crypt>` component. This class offers simple object-oriented wrappers to the mcrypt_ php's encryption library. By default, this component provides secure encryption using AES-256 (rijndael-256-cbc). Basic Usage ----------- This component is designed to provide a very simple usage: .. code-block:: php encrypt($text, $key); echo $crypt->decrypt($encrypted, $key); You can use the same instance to encrypt/decrypt several times: .. code-block:: php 'This is a secret text', 'other-key' => 'This is a very secret' ); foreach ($texts as $key => $text) { //Perform the encryption $encrypted = $crypt->encrypt($text, $key); //Now decrypt echo $crypt->decrypt($encrypted, $key); } Encryption Options ------------------ The following options are available to change the encryption behavior: +------------+---------------------------------------------------------------------------------------------------+ | Name | Description | +============+===================================================================================================+ | Cipher | The cipher is one of the encryption algorithms supported by libmcrypt. You can see a list here_ | +------------+---------------------------------------------------------------------------------------------------+ | Mode | One of the encryption modes supported by libmcrypt (ecb, cbc, cfb, ofb) | +------------+---------------------------------------------------------------------------------------------------+ Example: .. code-block:: php setCipher('blowfish'); $key = 'le password'; $text = 'This is a secret text'; echo $crypt->encrypt($text, $key); Base64 Support -------------- In order that encryption is properly transmited (emails) or displayed (browsers) base64_ encoding is usually applied to encrypted texts: .. code-block:: php encryptBase64($text, $key); echo $crypt->decryptBase64($text, $key); Setting up an Encryption service -------------------------------- You can set up the encryption component in the services container in order to use it from any part of the application: .. code-block:: php set('crypt', function() { $crypt = new Phalcon\Crypt(); //Set a global encryption key $crypt->setKey('%31.1e$i86e$f!8jz'); return $crypt; }, true); Then, for example, in a controller you can use it as follows: .. code-block:: php request->getPost('text'); $secret->content = $this->crypt->encrypt($text); if ($secret->save()) { $this->flash->success('Secret was successfully created!'); } } } .. _mcrypt: http://www.php.net/manual/en/book.mcrypt.php .. _here: http://www.php.net/manual/en/mcrypt.ciphers.php .. _base64: http://www.php.net/manual/en/function.base64-encode.php