1. 程式人生 > >python md5 問題(TypeError: Unicode-objects must be encoded before hashing)

python md5 問題(TypeError: Unicode-objects must be encoded before hashing)

import hashlib
import sys
 
def md5s():
    m=hashlib.md5()
    strs=sys.argv[1]
    m.update(strs.encode("utf8"))
    print(m.hexdigest())
 
if __name__=='__main__':
 
    md5s()

  

注意update()必須指定要加密的字串的字元編碼。

 

參考:https://blog.csdn.net/u012087740/article/details/48439559