是否有一个 perl 模块来验证存储在“{crypt}hashedpassword”中的密码? “{ssha}散列密码” “{md5}散列密码”

发布于 2024-11-03 15:43:20 字数 319 浏览 0 评论 0原文

我有一个存储用户登录信息的表,其中包含以下方案中的密码:

  • {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 技术交流群。

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

发布评论

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

评论(1

幸福不弃 2024-11-10 15:43:20

Authen::Passphrase 可以做到这一点:

use Authen::Passphrase;

print "success!!\n" 
  if Authen::Passphrase->from_rfc2307('{CRYPT}r2sKInajXZ6Fk')->match("helloworld");

Authen::Passphrase can do this:

use Authen::Passphrase;

print "success!!\n" 
  if Authen::Passphrase->from_rfc2307('{CRYPT}r2sKInajXZ6Fk')->match("helloworld");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文