added support for python2.5

This commit is contained in:
Michele Comitini
2013-09-24 18:37:10 +02:00
parent 7eb8a604bd
commit 18cdade705

View File

@@ -25,6 +25,7 @@ import hashlib
import platform
import os.path
import binascii
import sys
__all__ = ['pkcs5_pbkdf2_hmac', 'pbkdf2_bin', 'pbkdf2_hex']
__version__ = '0.99.3'
@@ -151,7 +152,8 @@ try: # check that we have proper OpenSSL or Common Crypto on the system.
_pbkdf2_hmac = _openssl_pbkdf2
crypto.PKCS5_PBKDF2_HMAC # test compatibility
except (OSError, AttributeError) as e:
except (OSError, AttributeError):
_, e, _ = sys.exc_info()
raise ImportError('Cannot find a compatible cryptographic library '
'on your system. %s' % e)