Skip to content

Instantly share code, notes, and snippets.

@CodyKochmann
Created February 8, 2016 14:24
Show Gist options
  • Save CodyKochmann/608b606f62087f402bec to your computer and use it in GitHub Desktop.
Save CodyKochmann/608b606f62087f402bec to your computer and use it in GitHub Desktop.
Random hash generator for Python
import random
hash = random.getrandbits(128)
print "hash value: %032x" % hash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment