hash.py 265 B

123456789101112
  1. # don't use the new fast hash functions if available
  2. # they are slow on linux and windows.
  3. # stupid.
  4. import sha as shalib
  5. sha = shalib.sha
  6. ##try:
  7. ## import hashlib
  8. ## sha = hashlib.sha1
  9. ##except ImportError:
  10. ## import sha as shalib
  11. ## sha = shalib.sha