为什么 md5 与 Perl 的 Digest::MD5 输出不匹配?

发布于 2024-08-21 20:31:19 字数 643 浏览 5 评论 0原文

从 ksh 终端运行 md5 函数与简单 Perl 脚本的输出不匹配。

在终端中,我运行:

echo -n abc | md5
62fecf21103616856d72e6ffc9bcb06b

如果我使用 Perl 运行它:

use Digest::MD5 qw(md5_hex);

foreach (@ARGV) {
   print "Digest is ", md5_hex($_), "\n";
}
exit

我得到

./perl_test.sh abc
Digest is 900150983cd24fb0d6963f7d28e17f72

在我看到的所有示例以及 md5 函数本身的示例中,Perl 看起来是正确的,但仅使用 Ksh 的则不然:

md5 -x
MD5 test suite:
MD5 ("") = d41d8cd98f00b204e9800998ecf8427e
MD5 ("a") = 0cc175b9c0f1b6a831c399e269772661
MD5 ("abc") = 900150983cd24fb0d6963f7d28e17f72

Running the md5 function from the ksh terminal does not matching the output from a simple Perl script.

In the terminal I run:

echo -n abc | md5
62fecf21103616856d72e6ffc9bcb06b

If I run it using Perl:

use Digest::MD5 qw(md5_hex);

foreach (@ARGV) {
   print "Digest is ", md5_hex($_), "\n";
}
exit

I get

./perl_test.sh abc
Digest is 900150983cd24fb0d6963f7d28e17f72

In all the samples I see and the sample of the md5 function itself the Perl one looks right but the one using just Ksh doesn't:

md5 -x
MD5 test suite:
MD5 ("") = d41d8cd98f00b204e9800998ecf8427e
MD5 ("a") = 0cc175b9c0f1b6a831c399e269772661
MD5 ("abc") = 900150983cd24fb0d6963f7d28e17f72

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

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

发布评论

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

评论(4

哎呦我呸! 2024-08-28 20:31:19

使用更便携的printf

printf "abc" | md5

use the more portable printf

printf "abc" | md5
以往的大感动 2024-08-28 20:31:19

您的 echo 无法识别 -n 选项,因此您正在对字符串“-n abc\n”进行哈希处理。

Your echo doesn't recognize the -n option, so you are hashing the string '-n abc\n'.

盛夏尉蓝 2024-08-28 20:31:19

根据 GregS 的回答,一些例子:

$ md5 -s "-n abc"

$ md5 -s "abc"
MD5 ("abc") = 900150983cd24fb0d6963f7d28e17f72
\012' # \012 = newline MD5 ("-n abc ") = 62fecf21103616856d72e6ffc9bcb06b

Further to GregS's answer, some examples:

$ md5 -s "-n abc"

And

$ md5 -s "abc"
MD5 ("abc") = 900150983cd24fb0d6963f7d28e17f72
\012' # \012 = newline MD5 ("-n abc ") = 62fecf21103616856d72e6ffc9bcb06b

And

掌心的温暖 2024-08-28 20:31:19

当我遇到这些问题时,我通常会执行类似的操作来检查我的输出是什么(例如显示制表符、空格等)

$ echo abc | hexdump -c
0000000   a   b   c  \n                                                
0000004

When I run into these issues, I normally do something like this to check what my output is (for example showing tabs, versus spaces and so forth)

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