不同的输出,相同的用户名和密码

发布于 2024-09-02 10:08:07 字数 72 浏览 1 评论 0原文

我想知道为什么即使对于相同的用户名和相同的密码,htpasswd 每次都会输出一个新的哈希值?我试图找到这个问题的答案,但找不到。

I was wondering why even for the same username and the same password, htpasswd outputs a new hash everytime? I tried finding an answer to this question, but couldn't.

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

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

发布评论

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

评论(2

江心雾 2024-09-09 10:08:07

“htpasswd”生成的密码使用随机盐,使其更难猜测。这还意味着用于攻击的预加密字典必须更大,因为它们必须使用每种可能的盐来加密每个可能的密码。

htpasswd 在幕后使用 crypt(3)

The passwords generated by "htpasswd" use a random salt, to make it harder to guess. It also means that pre-crypted dictionaries for attacks have to be much larger since they have to crypt every possible password with every possible salt.

htpasswd uses crypt(3) behind the scenes.

黯淡〆 2024-09-09 10:08:07

这里给你一个提示,当生成密钥或字符串时,使用 one_way_hash(salt + current time),这些即使不是不可能,也很难破解。我通常使用它来创建令牌或会话密钥。

Here is a tip for you, when generating secret keys or strings, use a one_way_hash( salt + current time), these are, if not impossible, hard to crack. I normally employ this to create tokens or session keys.

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