3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
35 class CRM_Utils_Crypt
{
38 * Encrypts a string using AES256 in ECB mode, if encryption is enabled.
40 * After encrypting the string, it is base64 encoded.
42 * If encryption is not enabled, either due to CIVICRM_SITE_KEY being
43 * undefined or due to unavailability of the mcrypt module, the string is
44 * merely base64 encoded and is not encrypted at all.
46 * @param string $string
47 * Plaintext to be encrypted.
49 * Base64-encoded ciphertext, or base64-encoded plaintext if encryption is
50 * disabled or unavailable.
52 static function encrypt($string) {
57 if (function_exists('mcrypt_module_open') &&
58 defined('CIVICRM_SITE_KEY')
60 $td = mcrypt_module_open(MCRYPT_RIJNDAEL_256
, '', MCRYPT_MODE_ECB
, '');
61 // ECB mode - iv not needed - CRM-8198
62 $iv = '00000000000000000000000000000000';
63 $ks = mcrypt_enc_get_key_size($td);
64 $key = substr(sha1(CIVICRM_SITE_KEY
), 0, $ks);
66 mcrypt_generic_init($td, $key, $iv);
67 $string = mcrypt_generic($td, $string);
68 mcrypt_generic_deinit($td);
69 mcrypt_module_close($td);
71 return base64_encode($string);
75 * Decrypts ciphertext encrypted with AES256 in ECB mode, if possible.
77 * If the mcrypt module is not available or if CIVICRM_SITE_KEY is not set,
78 * the provided ciphertext is only base64-decoded, not decrypted.
80 * @param string $string
81 * Ciphertext to be decrypted.
83 * Plaintext, or base64-decoded ciphertext if encryption is disabled or
86 static function decrypt($string) {
91 $string = base64_decode($string);
96 if (function_exists('mcrypt_module_open') &&
97 defined('CIVICRM_SITE_KEY')
99 $td = mcrypt_module_open(MCRYPT_RIJNDAEL_256
, '', MCRYPT_MODE_ECB
, '');
100 // ECB mode - iv not needed - CRM-8198
101 $iv = '00000000000000000000000000000000';
102 $ks = mcrypt_enc_get_key_size($td);
103 $key = substr(sha1(CIVICRM_SITE_KEY
), 0, $ks);
105 mcrypt_generic_init($td, $key, $iv);
106 $string = rtrim(mdecrypt_generic($td, $string));
107 mcrypt_generic_deinit($td);
108 mcrypt_module_close($td);