Skip to content

Instantly share code, notes, and snippets.

@pabelnl
pabelnl / gist:b305c8302124cf9cb20378a9078a54d7
Created January 6, 2018 16:07
SHA256 hash of "Hello World" in hexadecimal
import hashlib
hello_world_hash = hashlib.sha256(b'Hello World')
hello_world_hex = hello_world_hash.hexdigest()
print(hello_world_hex)