-2
我已經把security.yml
我如何在我的登錄表單中使用sha512?
Acme\UserBundle\Entity\User: sha512
但我也有改變呢? :
$this->salt = base_convert(sha1(uniqid(mt_rand(), true)), 16, 36);
與
$this->salt = base_convert(sha512(uniqid(mt_rand(), true)), 16, 36);
?
,如果我有這樣的security.yml
:
Acme\UserBundle\Entity\User: sha512
,如果我有這樣的user.php
$this->salt = base_convert(sha1(uniqid(mt_rand(), true)), 16, 36);
當我進行登錄回我
目前的口令是無效的。
爲什麼?
在沙子上投擲sha512毫無意義。膨脹鹽不會增加其熵。 – CodesInChaos 2012-02-04 18:31:44