添加了MCrypt加密助手

This commit is contained in:
Li Jianxuan 2013-11-28 09:01:11 +00:00
parent 2a37cec905
commit e6ed812e8d
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
<?php
namespace Helpers;
class MCrypt
{
function __construct()
{
$this->config = \Zend_Registry::get('config');
}
static function encrypt($decrypted, $password, $salt='!kQm*fF3pXe1Kbm%9') {
$key = hash('SHA256', $salt . $password, true);
srand();
$iv = mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC), MCRYPT_RAND);
if (strlen($iv_base64 = rtrim(base64_encode($iv), '=')) != 22) return false;
$encrypted = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $decrypted . md5($decrypted), MCRYPT_MODE_CBC, $iv));
return $iv_base64 . $encrypted;
}
static function decrypt($encrypted, $password, $salt='!kQm*fF3pXe1Kbm%9') {
$key = hash('SHA256', $salt . $password, true);
$iv = base64_decode(substr($encrypted, 0, 22) . '==');
$encrypted = substr($encrypted, 22);
$decrypted = rtrim(mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, base64_decode($encrypted), MCRYPT_MODE_CBC, $iv), "\0\4");
$hash = substr($decrypted, -32);
$decrypted = substr($decrypted, 0, -32);
if (md5($decrypted) != $hash) return false;
return $decrypted;
}
}