Pythonで試したコードは次のとおりですが、次のようになりますAttributeError
。
>>> import hmac
>>> import hashlib
>>> h=hashlib.new('ripemd160')
>>> hmac.new("bedford","Hello",hashlib.ripemd160)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'hashlib' has no attribute 'ripemd160'
Python のドキュメントと多くのフォーラムを検索しましたが、ripemd160 と Python についてはあまり見つかりません。