Files
GoogleDriveManagement/gdata/analytics/Crypto/Hash/SHA.py
2014-06-28 10:14:05 -04:00

12 lines
249 B
Python

# Just use the SHA module from the Python standard library
__revision__ = "$Id: SHA.py,v 1.4 2002/07/11 14:31:19 akuchling Exp $"
from sha import *
import sha
if hasattr(sha, 'digestsize'):
digest_size = digestsize
del digestsize
del sha