home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 April / enter-2004-04.iso / files / EVE_1424_100181.exe / SHA.py < prev    next >
Encoding:
Python Source  |  2004-04-20  |  260 b   |  12 lines

  1.  
  2. # Just use the SHA module from the Python standard library
  3.  
  4. __revision__ = "$Id: SHA.py,v 1.4 2002/07/11 14:31:19 akuchling Exp $"
  5.  
  6. from sha import *
  7. import sha
  8. if hasattr(sha, 'digestsize'):
  9.     digest_size = digestsize
  10.     del digestsize
  11. del sha
  12.