Compute SHA-256 digests.
hashlib.sha256
.hexdigest(
import hashlib def sha256_hex(text): # TODO: hashlib.sha256(text.encode()).hexdigest() pass