Issue #18582: HMAC_CTX_copy() is not available on OpenSSL < 1.0

This commit is contained in:
Christian Heimes 2013-10-19 17:59:48 +02:00
parent 7058dad0bd
commit 351f539ad8
1 changed files with 2 additions and 1 deletions

View File

@ -498,7 +498,8 @@ EVP_new(PyObject *self, PyObject *args, PyObject *kwdict)
#if (!defined(OPENSSL_NO_HMAC) && !defined(OPENSSL_NO_SHA))
#if (OPENSSL_VERSION_NUMBER >= 0x10000000 && !defined(OPENSSL_NO_HMAC) \
&& !defined(OPENSSL_NO_SHA))
#define PY_PBKDF2_HMAC 1