gpt4 book ai didi

authentication - 关闭 Cakephp Auth 密码散列

转载 作者:行者123 更新时间:2023-12-04 04:25:54 25 4
gpt4 key购买 nike

我正在将新工作中的 cakephp 应用程序从 l.1 升级到 1.2。我正在用很棒的 Auth 组件替换自制的 1.1 授权代码。问题是密码没有在遗留数据库中散列。如何暂时关闭密码散列,以便开始使用 Auth 组件。

别担心,我会散列密码并稍后更改。

最佳答案

这是改编自另一个堆栈溢出答案的解决方案。通过覆盖 User::hashPassword 模型,基本上什么都不做。

How do I replace the cakephp password hashing algorithm?

<?php
class User extends AppModel {
var $name = 'User';

// this is used by the auth component to turn the password into its hash before comparing with the DB
function hashPasswords($data) {
return $data;
}
}
?>

关于authentication - 关闭 Cakephp Auth 密码散列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1894203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com