← Back to List

10930번: SHA-256 ↗

Solutions

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