Zend_Auth 的数据库和文件盐
在我的应用程序中,我有一个表行盐,并在 Zend_Registry 中设置了静态盐。我正在尝试两者,而无需编写自己的 Auth_Adapter。这就是我现在所拥有的一种盐腌方法。
$adapter->setCredentialTreatment("SHA1(CONCAT(?, salt))");
$adapter->setCredential($values['password']);
这是可能的,还是我必须为此编写整个适配器?
In my application I have a table row salt, and a static salt set in my Zend_Registry. I'm trying to both, without having to write my own Auth_Adapter. Here's what I have right now for just one salting method.
$adapter->setCredentialTreatment("SHA1(CONCAT(?, salt))");
$adapter->setCredential($values['password']);
Is this possible, or do I have to write an entire adapter for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将另一个项目添加到 CONCAT 函数即可。
Just add another item to the CONCAT function.