为什么 md5 与 Perl 的 Digest::MD5 输出不匹配?
从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用更便携的
printf
use the more portable
printf
您的
echo
无法识别 -n 选项,因此您正在对字符串“-n abc\n”进行哈希处理。Your
echo
doesn't recognize the -n option, so you are hashing the string '-n abc\n'.根据 GregS 的回答,一些例子:
和
Further to GregS's answer, some examples:
And
当我遇到这些问题时,我通常会执行类似的操作来检查我的输出是什么(例如显示制表符、空格等)
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)