我正在使用 Yii CSecurityManager 进行密码加密:
$this->securityManager->encrypt('TEST', '1');
*TEST 是要加密的字符串,1 是密钥。
但是当我在解密之前进行测试时,我发现该值不断变化。
for ($index = 0; $index < 10; $index++) {
$EncPassword = $this->securityManager->encrypt('TEST', '1');
echo $EncPassword;
}
我在我的应用程序的另一部分依赖这个值......我挖掘了加密密码,我发现它实际上是随机的:
public function encrypt($data,$key=null)
{
$module=$this->openCryptModule();
$key=$this->substr($key===null ? md5($this->getEncryptionKey()) : $key,0,mcrypt_enc_get_key_size($module));
srand();
$iv=mcrypt_create_iv(mcrypt_enc_get_iv_size($module), MCRYPT_RAND);
mcrypt_generic_init($module,$key,$iv);
$encrypted=$iv.mcrypt_generic($module,$data);
mcrypt_generic_deinit($module);
mcrypt_module_close($module);
return $encrypted;
}
所以我的问题是如何根据密钥进行加密并每次都获得相同的值?
谢谢,丹尼