当我通过 BCrypt 使用用户名和密码登录时,检查没有问题,一切都很好。
但是当我完成恢复密码的过程并尝试使用新密码登录时,BCrypt 永远不会返回 true。
我的代码如下:
before_save :encrypt_password
before_update :encrypt_password
def authenticate
player = Player.find_by(mail: self.mail)
unless player.nil?
current_password = BCrypt::Password.new(player.password)
if current_password == self.password
player
else
nil
end
end
end
private
def encrypt_password
unless self.password.nil?
self.password = BCrypt::Password.create(self.password)
end
我正在使用导轨 4