1
當我嘗試使用ripemd160
與hashlib
它說它無法找到它。hashlib找不到ripemd160
我用easy_install hashlib
安裝hashlib,但它仍然無法找到ripemd160。
我使用Ubuntu和python2.7
def hexHash(str, withHash = None):
h = hashlib.new('ripemd160')
h.update(str)
if withHash != None:
return h.hexdigest()[0:6]
else:
return '#'+h.hexdigest()[0:6]
ValueError: unsupported hash type
你可以顯示你正在使用的代碼和給出的確切的錯誤信息嗎? –
是的,我編輯它。 – CriticalTheWizard