Wrap crypto.hash imports with try/except

remotes/origin/release1.5.3
James Tanner 11 years ago committed by Michael DeHaan
parent 521e135cb3
commit b0771f3cd2

@ -30,7 +30,11 @@ from binascii import hexlify
from binascii import unhexlify
from ansible import constants as C
from Crypto.Hash import SHA256, HMAC
try:
from Crypto.Hash import SHA256, HMAC
HAS_HASH = True
except ImportError:
HAS_HASH = False
# Counter import fails for 2.0.1, requires >= 2.6.1 from pip
try:

Loading…
Cancel
Save