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

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