是否有一个 perl 模块来验证存储在“{crypt}hashedpassword”中的密码? “{ssha}散列密码” “{md5}散列密码”
我有一个存储用户登录信息的表,其中包含以下方案中的密码:
- {crypt}hashedpassword
- {ssha}hashedpasswordsalted
- {md5}hashedpassword
- .....
是否有一个 Perl 模块可以理解此方案并能够验证给出明文密码的密码?
像这样的东西
如果 validatePassword("helloworld",{CRYPT}r2sKInajXZ6Fk) 则打印“成功!!\n”
I have a table which stores user login infomration, which contains passwords in the below scheme:
- {crypt}hashedpassword
- {ssha}hashedpasswordsalted
- {md5}hashedpassword
- .....
Is there a Perl module that understands this scheme and is able to validate the password given the plain text password?
Something like
print "success!!\n" if validatePassword("helloworld",{CRYPT}r2sKInajXZ6Fk)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Authen::Passphrase 可以做到这一点:
Authen::Passphrase can do this: