我目前正在开展一个需要闭环电子邮件验证的项目。作为该过程的一部分,我需要生成一个随机哈希字符串,该字符串可以附加到发送给用户的链接中。当他们单击链接时,他们将被定向到我的网站,此时应用程序将确认哈希并完成注册过程。对于我一直在使用的所有哈希:
hash('sha256', $string);
但是对于这个过程,我需要$string
用一个随机值来播种。我有 Zend Framework 可用,并希望做这样的事情:
$crypt = new Zend_Filter_Encrypt_Mcrypt(array());
$hash = hash('sha256', $crypt->getVector());
我的问题是,这是生成随机哈希码的可行算法吗?
这是Zend_Filter_Encrypt_Mcrypt::setVector()
方法(生成通过返回的值getVector()
:
public function setVector($vector = null)
{
$cipher = $this->_openCipher();
$size = mcrypt_enc_get_iv_size($cipher);
if (empty($vector)) {
$this->_srand();
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && version_compare(PHP_VERSION, '5.3.0', '<')) {
$method = MCRYPT_RAND;
} else {
if (file_exists('/dev/urandom') || (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')) {
$method = MCRYPT_DEV_URANDOM;
} elseif (file_exists('/dev/random')) {
$method = MCRYPT_DEV_RANDOM;
} else {
$method = MCRYPT_RAND;
}
}
$vector = mcrypt_create_iv($size, $method);
} else if (strlen($vector) != $size) {
require_once 'Zend/Filter/Exception.php';
throw new Zend_Filter_Exception('The given vector has a wrong size for the set algorithm');
}
$this->_encryption['vector'] = $vector;
$this->_closeCipher($cipher);
return $this;
}