← Back to List

10933번: RIPEMD-160 ↗

Solutions

Python 3
102 B | 102 chars
import hashlib
h = hashlib.new('ripemd160')
a=input()
h.update(a.encode('utf-8'))
print(h.hexdigest())