在 ASP.NET 成员资格提供程序中可以从哈希密码类型转到加密密码类型吗?

发布于 2024-07-14 07:16:45 字数 217 浏览 3 评论 0原文

我有一个 asp.net Web 应用程序,表单身份验证,它使用哈希密码类型。 如果将密码类型更改为加密,是否会遇到任何问题?

我发现,如果我更改为“加密”,旧哈希密码的尝试密码恢复会正常失败,这很好。 如果我改变的话,是否会出现一些不太好的事情?

如果有人在我更改为“加密”后更改了密码,则密码类型将保持为“散列”。 有什么方法可以强制它将新密码存储为加密的吗?

I've have an asp.net web app, forms authentication, that's uses Hashed password type.
Will I run across any problems if I change the password type to Encrypted?

I see that, if I change to Encrypted, attempted password recovery for old hashed passwords fails gracefully, which is good. Are there any not so good things that might show up if I change.

If someone changes their password after I make the change to Encrypted the password type stays as Hashed. Is there any way to force it to store the new password as Encrypted instead?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亚希 2024-07-21 07:16:45

如果我将密码类型更改为加密?

为什么?

散列更安全(密码恢复:生成新密码并发送)。

我可以看到使用加密的唯一原因是系统本身是否需要密码(例如,以用户身份向另一个系统进行身份验证)。

if I change the password type to Encrypted?

Why?

Hashed is safer (password recovery: generate a new password and send that).

The only reason I can see to use encrypted is if the passwords are needed by the system itself (e.g. to authenticate to another system as the user).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文