php bcry,php – bcrypt和随机生成的盐

所以我正在试验bcrypt.我有一个类(如下所示,我从

http://www.firedartstudios.com/articles/read/php-security-how-to-safely-store-your-passwords得到),其中有3个函数.第一个是生成随机Salt,第二个是使用第一个生成的Salt生成哈希,最后一个是通过将其与哈希密码进行比较来验证提供的密码.

/* Bcrypt Example */

class bcrypt {

private $rounds;

public function __construct($rounds = 12) {

if(CRYPT_BLOWFISH != 1) {

throw new Exception("Bcrypt is not supported on this server, please see the following to learn more: http://php.net/crypt");

}

$this->rounds = $rounds;

}

/* Gen Salt */

public function genSalt() {

/* openssl_random_pseudo_bytes(16) Fallback */

$seed = '';

for($i = 0; $i < 16; $i++) {

$seed .= chr(mt_rand(0, 255));

}

/* GenSalt */

$salt = substr(strtr(base64_encode($seed), '+', '.'), 0, 22);

/* Return */

return $salt;

}

/* Gen Hash */

public function genHash($password) {

/* Explain '$2y$' . $this->rounds . '$' */

/* 2a selects bcrypt algorithm */

/* $this->rounds is the workload factor */

/* GenHash */

$hash = crypt($password, '$2y$' . $this->rounds . '$' . $this->genSalt());

/* Return */

return $hash;

}

/* Verify Password */

public function verify($password, $existingHash) {

/* Hash new password with old hash */

$hash = crypt($password, $existingHash);

/* Do Hashs match? */

if($hash === $existingHash) {

return true;

} else {

return false;

}

}

}

/* Next the Usage */

/* Start Instance */

$bcrypt = new bcrypt(12);

/* Two create a Hash you do */

echo 'Bcrypt Password: ' . $bcrypt->genHash('password');

/* Two verify a hash you do */

$HashFromDB = $bcrypt->genHash('password'); /* This is an example you would draw the hash from your db */

echo 'Verify Password: ' . $bcrypt->verify('password', $HashFromDB);

?>

现在,如果我生成一个带有’password’的哈希值,我会得到一个哈希密码,它接受了randmonly生成的Salt.接下来,如果我再次输入’password’并使用验证功能,我会认为密码匹配.如果我输入错误的密码,我会弄错.我的问题是这怎么可能?随机生成的盐怎么样?怎么没有任何影响?

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值