我在标准的AWS CentOS实例上运行Python应用程序。当代码尝试调用hashlib.pbkdf2_hmac时,会引发AttributeError异常。代码如下:
import hashlib, binascii
hashed_password = binascii.hexlify(hashlib.pbkdf2_hmac(result.encryption_method, bytearray(password.encode('utf_32')), binascii.a2b_uu(result.salt), result.encryption_rounds))
我已经运行yum update
希望将Python 2.7更新到最新版本,但这没有帮助。有关如何获取hashlib.pbkdf2_hmac的任何帮助吗?