我想散列一個簡單的字符串數組 該文檔說你不能簡單地將字符串送入hashlib的update()函數, 所以我嘗試了一個常規變量,但後來我出現TypeError: object supporting the buffer API required
錯誤。在python中散列數組或對象3
這裏是我到目前爲止
def generateHash(data):
# Prepare the project id hash
hashId = hashlib.md5()
hashId.update(data)
return hashId.hexdigest()
據我所知,你應該能夠將一個字符串送入hashlib的更新功能,能你提供更多信息? – Stephan