我一直在寻找加密密码以供我的面板使用的最佳方法,我决定继续使用 BCRYPT,这仅仅是因为每次加密的成本以及它通常被认为是目前最好的加密方法之一。当前时间。
我正在使用双向盐,所以每个用户都有一个独特的盐,然后显然是存储在我的应用程序中的盐,我注意到一些相当奇怪的行为..根据 PHP 文档,这种行为是正常的吗?
无论如何,这是我使用的代码:
$Crypto = new Crypto;
echo $Crypto->encrypt( "123456789abcdefghijklm", "StackOverflow_Is_Awesome!" ); // First parameter being the "User Salt", second being the password.
// Above outputs $2y$13$123456789abcdefghijkleepFY8JLvsf2YbnWolqQyO3DIzrCeNIu
现在,加密类:
<?php
// ASSUMING $this->hashingSalt = HBSNi3y7ruhbVGkhdg83ijdbvghiojkgudL;JP
class Crypto {
private $hashingSalt, $database;
public function __construct( $salt )
{
$this->hashingSalt = $salt;
$this->database = new DatabaseFunctions();
}
public function encrypt( $salt, $password )
{
$options = array(
'cost' => 13,
'salt' => $salt //22 chars
);
return password_hash( $password . $this->hashingSalt, PASSWORD_BCRYPT, $options);
}
}
所以,我的兴趣是,为什么这个函数只是将选项中的盐集添加到输出字符串的开头?这真的令人费解......因为这并不完全是我所说的安全,而是击败了我的对象。
任何人都可以建议,尝试并解释我完全过去的事情吗?谢谢
PHP 文档: http: //php.net/manual/en/function.password-hash.php