如何在PHP中安全地生成SSHA256或SSHA512哈希?

前端之家收集整理的这篇文章主要介绍了如何在PHP中安全地生成SSHA256或SSHA512哈希?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在研究 web administration module for mailservers(如果您想看一下它是开源的).

为此,我需要能够生成Dovecot可读的散列密码.作为described on their wiki,他们推荐的密码散列方案是SSHA256(额外的S用于盐渍).

它还解释说,使用类似PHP代码方法实现这一点可能相当简单:

$salt = 'generate_a_salt_somehow';
$hash = hash('sha256',$password . $salt);

然而,从我读到的关于密码学的内容来看,这是一种产生盐渍哈希的相当天真的方法,但如果你在typing A-E-S in your source code时做错了,我认为在这种情况下也是如此.

因此,如果您对密码学有深入了解,我很想知道最安全的方法,无论是mcrypt,mhash还是其他什么.

链接的Dovecot维基页面解释了Dovecot使用的确切哈希格式.你在这件事上没有任何选择–Dovecot对哈希的外观有所期待,所以你必须遵守它的规则:

For most of the salted password schemes (SMD5,SSHA*) the salt is stored after the password hash and its length can vary. When hashing the password,append the salt after the plaintext password,e.g.: SSHA256(pass,salt) = SHA256(pass + salt) + salt.

因此PHP中适当的密码生成功能可能如下所示:

$hash = "{SSHA256}" . base64_encode(hash('sha256',$password . $salt) . $salt);
原文链接:https://www.f2er.com/php/135177.html

猜你在找的PHP相关文章