aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-23 09:57:07 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-23 09:57:07 -0800
commit0245a9a1070b4d0834cd84aad6292238cf74cb81 (patch)
tree856ddd560693474321f9754b0d68b505332990ab
parentf1ca56c42a9cb6fc1e83f6c28ae941d0f0044fb9 (diff)
downloadcryptography-0245a9a1070b4d0834cd84aad6292238cf74cb81.tar.gz
cryptography-0245a9a1070b4d0834cd84aad6292238cf74cb81.tar.bz2
cryptography-0245a9a1070b4d0834cd84aad6292238cf74cb81.zip
Fix
-rw-r--r--cryptography/hazmat/backends/openssl/evp.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cryptography/hazmat/backends/openssl/evp.py b/cryptography/hazmat/backends/openssl/evp.py
index e7b61b72..8cf96b2d 100644
--- a/cryptography/hazmat/backends/openssl/evp.py
+++ b/cryptography/hazmat/backends/openssl/evp.py
@@ -106,9 +106,9 @@ CUSTOMIZATIONS = """
const int Cryptography_HAS_GCM = 1;
#else
const int Cryptography_HAS_GCM = 0;
-const int Cryptography_EVP_CTRL_GCM_GET_TAG = -1;
-const int Cryptography_EVP_CTRL_GCM_SET_TAG = -1;
-const int Cryptography_EVP_CTRL_GCM_SET_IVLEN = -1;
+const int EVP_CTRL_GCM_GET_TAG = -1;
+const int EVP_CTRL_GCM_SET_TAG = -1;
+const int EVP_CTRL_GCM_SET_IVLEN = -1;
#endif
"""