* @author Tom Worster * @since 2.0 */ class BaseSecurity { /** * Uses AES, block size is 128-bit (16 bytes). */ const CRYPT_BLOCK_SIZE = 16; /** * Uses AES-192, key size is 192-bit (24 bytes). */ const CRYPT_KEY_SIZE = 24; /** * Uses SHA-256. */ const DERIVATION_HASH = 'sha256'; /** * Uses 1000 iterations. */ const DERIVATION_ITERATIONS = 1000; /** * Encrypts data. * @param string $data data to be encrypted. * @param string $password the encryption password * @return string the encrypted data * @throws Exception if PHP Mcrypt extension is not loaded or failed to be initialized * @see decrypt() */ public static function encrypt($data, $password) { $module = static::openCryptModule(); $data = static::addPadding($data); srand(); $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($module), MCRYPT_RAND); $key = static::deriveKey($password, $iv); mcrypt_generic_init($module, $key, $iv); $encrypted = $iv . mcrypt_generic($module, $data); mcrypt_generic_deinit($module); mcrypt_module_close($module); return $encrypted; } /** * Decrypts data * @param string $data data to be decrypted. * @param string $password the decryption password * @return string the decrypted data * @throws Exception if PHP Mcrypt extension is not loaded or failed to be initialized * @see encrypt() */ public static function decrypt($data, $password) { $module = static::openCryptModule(); $ivSize = mcrypt_enc_get_iv_size($module); $iv = StringHelper::substr($data, 0, $ivSize); $key = static::deriveKey($password, $iv); mcrypt_generic_init($module, $key, $iv); $decrypted = mdecrypt_generic($module, StringHelper::substr($data, $ivSize, StringHelper::strlen($data))); mcrypt_generic_deinit($module); mcrypt_module_close($module); return static::stripPadding($decrypted); } /** * Adds a padding to the given data (PKCS #7). * @param string $data the data to pad * @return string the padded data */ protected static function addPadding($data) { $pad = self::CRYPT_BLOCK_SIZE - (StringHelper::strlen($data) % self::CRYPT_BLOCK_SIZE); return $data . str_repeat(chr($pad), $pad); } /** * Strips the padding from the given data. * @param string $data the data to trim * @return string the trimmed data */ protected static function stripPadding($data) { $end = StringHelper::substr($data, -1, NULL); $last = ord($end); $n = StringHelper::strlen($data) - $last; if (StringHelper::substr($data, $n, NULL) == str_repeat($end, $last)) { return StringHelper::substr($data, 0, $n); } return false; } /** * Derives a key from the given password (PBKDF2). * @param string $password the source password * @param string $salt the random salt * @return string the derived key */ protected static function deriveKey($password, $salt) { if (function_exists('hash_pbkdf2')) { return hash_pbkdf2(self::DERIVATION_HASH, $password, $salt, self::DERIVATION_ITERATIONS, self::CRYPT_KEY_SIZE, true); } $hmac = hash_hmac(self::DERIVATION_HASH, $salt . pack('N', 1), $password, true); $xorsum = $hmac; for ($i = 1; $i < self::DERIVATION_ITERATIONS; $i++) { $hmac = hash_hmac(self::DERIVATION_HASH, $hmac, $password, true); $xorsum ^= $hmac; } return substr($xorsum, 0, self::CRYPT_KEY_SIZE); } /** * Prefixes data with a keyed hash value so that it can later be detected if it is tampered. * @param string $data the data to be protected * @param string $key the secret key to be used for generating hash * @param string $algorithm the hashing algorithm (e.g. "md5", "sha1", "sha256", etc.). Call PHP "hash_algos()" * function to see the supported hashing algorithms on your system. * @return string the data prefixed with the keyed hash * @see validateData() * @see getSecretKey() */ public static function hashData($data, $key, $algorithm = 'sha256') { return hash_hmac($algorithm, $data, $key) . $data; } /** * Validates if the given data is tampered. * @param string $data the data to be validated. The data must be previously * generated by [[hashData()]]. * @param string $key the secret key that was previously used to generate the hash for the data in [[hashData()]]. * @param string $algorithm the hashing algorithm (e.g. "md5", "sha1", "sha256", etc.). Call PHP "hash_algos()" * function to see the supported hashing algorithms on your system. This must be the same * as the value passed to [[hashData()]] when generating the hash for the data. * @return string the real data with the hash stripped off. False if the data is tampered. * @see hashData() */ public static function validateData($data, $key, $algorithm = 'sha256') { $hashSize = StringHelper::strlen(hash_hmac($algorithm, 'test', $key)); $n = StringHelper::strlen($data); if ($n >= $hashSize) { $hash = StringHelper::substr($data, 0, $hashSize); $data2 = StringHelper::substr($data, $hashSize, $n - $hashSize); return $hash === hash_hmac($algorithm, $data2, $key) ? $data2 : false; } else { return false; } } /** * Returns a secret key associated with the specified name. * If the secret key does not exist, a random key will be generated * and saved in the file "keys.php" under the application's runtime directory * so that the same secret key can be returned in future requests. * @param string $name the name that is associated with the secret key * @param integer $length the length of the key that should be generated if not exists * @return string the secret key associated with the specified name */ public static function getSecretKey($name, $length = 32) { static $keys; $keyFile = Yii::$app->getRuntimePath() . '/keys.php'; if ($keys === null) { $keys = array(); if (is_file($keyFile)) { $keys = require($keyFile); } } if (!isset($keys[$name])) { $keys[$name] = static::generateRandomKey($length); file_put_contents($keyFile, " 30) { throw new InvalidParamException('Hash is invalid.'); } $test = crypt($password, $hash); $n = strlen($test); if (strlen($test) < 32 || $n !== strlen($hash)) { return false; } // Use a for-loop to compare two strings to prevent timing attacks. See: // http://codereview.stackexchange.com/questions/13512 $check = 0; for ($i = 0; $i < $n; ++$i) { $check |= (ord($test[$i]) ^ ord($hash[$i])); } return $check === 0; } /** * Generates a salt that can be used to generate a password hash. * * The PHP [crypt()](http://php.net/manual/en/function.crypt.php) built-in function * requires, for the Blowfish hash algorithm, a salt string in a specific format: * "$2a$", "$2x$" or "$2y$", a two digit cost parameter, "$", and 22 characters * from the alphabet "./0-9A-Za-z". * * @param integer $cost the cost parameter * @return string the random salt value. * @throws InvalidParamException if the cost parameter is not between 4 and 30 */ protected static function generateSalt($cost = 13) { $cost = (int)$cost; if ($cost < 4 || $cost > 31) { throw new InvalidParamException('Cost must be between 4 and 31.'); } // Get 20 * 8bits of pseudo-random entropy from mt_rand(). $rand = ''; for ($i = 0; $i < 20; ++$i) { $rand .= chr(mt_rand(0, 255)); } // Add the microtime for a little more entropy. $rand .= microtime(); // Mix the bits cryptographically into a 20-byte binary string. $rand = sha1($rand, true); // Form the prefix that specifies Blowfish algorithm and cost parameter. $salt = sprintf("$2y$%02d$", $cost); // Append the random salt data in the required base64 format. $salt .= str_replace('+', '.', substr(base64_encode($rand), 0, 22)); return $salt; } }