我正在尝试使用内置ripemd160
和md4
提供的Openssl
来生成哈希。这是我的代码
import hashlib
c = input("Enter: ")
c = c.encode('utf-8')
h = hashlib.new('ripemd160')
d = h.update(c)
print(d.hexdigest())
但这给了我一个错误
AttributeError: 'NoneType' object has no attribute 'hexdigest'