编程语言
首页 > 编程语言> > PHP-symfony2和symfony1应用程序相同的密码加密

PHP-symfony2和symfony1应用程序相同的密码加密

作者:互联网

我有一个带有sfGuardUser插件的symfony1应用程序.我需要在新的symfony2应用程序中使用相同的数据库.

如何定义密码编码器,使其与symfony1编码的密码匹配?

解决方法:

如果您没有提供其他编码算法,则Symfony 1.x将使用sha1($salt.$rawPassword).因此,您的PasswordEncoder应该如下所示:

use Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface;

class PasswordEncoder implements PasswordEncoderInterface
{
    public function encodePassword($raw, $salt)
    {
        return sha1($salt.$raw);
    }

    public function isPasswordValid($encoded, $raw, $salt)
    {
        return $this->encodePassword($raw, $salt) === $encoded;
    }
}

祝好运!

标签:symfony-1-4,symfony,security,php
来源: https://codeday.me/bug/20191031/1975626.html