← Back to List

10928번: SHA-1 ↗

Solutions

Python 3
72 B | 72 chars
import hashlib
a=input()
L=hashlib.sha1(a.encode())
print(L.hexdigest())