/gdata/Crypto/Hash/SHA.py
Python | 11 lines | 7 code | 3 blank | 1 comment | 1 complexity | b037afb9f239fd48e31daa0ee31f8ed1 MD5 | raw file
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 6from sha import * 7import sha 8if hasattr(sha, 'digestsize'): 9 digest_size = digestsize 10 del digestsize 11del sha