计算 md5 值

来源:互联网 发布:淘宝卖蜂蜜要备案吗 编辑:程序博客网 时间:2024/04/29 18:02

此文版权属于作者所有,任何人、媒体或者网站转载、借用都必须征得作者本人同意!

  1. linux shell command

    echo -n 'hello world' | md5sum#如果 echo 不支持 -n 参数,用这个:printf '%s' 'hello world' | md5sum
  2. python

    import hashlibm = hashlib.md5()m.update("hello world")print m.hexdigest()
  3. ?

    ?

0 0