Python ripemd160 error

1.1k Views Asked by At

I'm trying to use the inbuilt ripemd160 and md4 provided by Openssl to generate hash. This is my code

import hashlib
c = input("Enter: ")
c = c.encode('utf-8')
h = hashlib.new('ripemd160')
d = h.update(c)
print(d.hexdigest())

But this give me an error

AttributeError: 'NoneType' object has no attribute 'hexdigest'

1

There are 1 best solutions below

0
pbacterio On BEST ANSWER

update() do not return the digest. Digest is generated by digest() or hexdigest()

h.update(c)
print(h.hexdigest())