osx – 如何在bash在Mac OS X中创建md5哈希

前端之家收集整理的这篇文章主要介绍了osx – 如何在bash在Mac OS X中创建md5哈希前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在mac上使用bash为字符串创建md5哈希值? md5sum不存在于我的环境中。我做了一个男人的md5,但我很困惑,真正做什么。
md5 "string"

不返回散列。

这应该工作 –
[jaypal:~/Temp] echo "this will be encrypted" | md5
72caf9daf910b5ef86796f74c20b7e0b

或者如果你喜欢这里字符串符号然后 –

[jaypal:~/Temp] md5 <<< 'this will be encrypted'
72caf9daf910b5ef86796f74c20b7e0b

更新:

每个man页面,你可以玩任何以下选项

-s string
        Print a checksum of the given string.

-p      Echo stdin to stdout and append the checksum to stdout.

-q      Quiet mode - only the checksum is printed out.  Overrides the -r option.


[jaypal:~/Temp] md5 -s 'this will be encrypted'
MD5 ("this will be encrypted") = 502810f799de274ff7840a1549cd028a

[jaypal:~/Temp] md5 -qs 'this will be encrypted'
502810f799de274ff7840a1549cd028a

注意:MD5总是产生相同的散列。您发现输出与上面给出的示例不同的原因是由于在注释中提出的一点。前两个示例使用尾随换行符来生成散列。为了避免这种情况,您可以使用:

[jaypal:~/Temp] echo -n "this will be encrypted" | md5
502810f799de274ff7840a1549cd028a
原文链接:https://www.f2er.com/bash/389963.html

猜你在找的Bash相关文章