Skip to content

Instantly share code, notes, and snippets.

@raelga
Created July 1, 2015 15:01
Show Gist options
  • Save raelga/fb3c3cb4843c6742798d to your computer and use it in GitHub Desktop.
Save raelga/fb3c3cb4843c6742798d to your computer and use it in GitHub Desktop.
import hashlib
for i in hashlib.algorithms_available:
t = "sophie1";
h = hashlib.new(i);
h.update(t);
th = h.hexdigest();
print(t+" > "+i+" > "+h.hexdigest());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment