Skip to content

Instantly share code, notes, and snippets.

@spnow
Forked from evernick/md5.py
Created August 1, 2017 23:16
Show Gist options
  • Save spnow/7591861fa00a7940555af519cae6c0ea to your computer and use it in GitHub Desktop.
Save spnow/7591861fa00a7940555af519cae6c0ea to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
import hashlib
if __name__ == "__main__":
m = hashlib.md5("hello".encode("UTF-8"))
data = (m.hexdigest())
print data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment