Skip to content

Instantly share code, notes, and snippets.

@sleepless-se
Forked from nmalkin/hash.py
Created February 13, 2019 21:13
Show Gist options
  • Save sleepless-se/5681b9619f63219cfd2e90f31642ee76 to your computer and use it in GitHub Desktop.
Save sleepless-se/5681b9619f63219cfd2e90f31642ee76 to your computer and use it in GitHub Desktop.
SHA-256 hash of a string in Python 3
#!/usr/bin/env python3
import hashlib
def hash_string(string):
"""
Return a SHA-256 hash of the given string
"""
return hashlib.sha256(string.encode('utf-8')).hexdigest()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment