不同的输出,相同的用户名和密码
我想知道为什么即使对于相同的用户名和相同的密码,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“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.
这里给你一个提示,当生成密钥或字符串时,使用 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.