aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcyli <cyli@twistedmatrix.com>2013-12-22 15:51:50 -0800
committercyli <cyli@twistedmatrix.com>2013-12-22 16:26:35 -0800
commitb32c90c00975c95ae6c00d232b39e8eff6339243 (patch)
treea7f445e4e878efc943ae7f3bf65972faada5c975
parent4ba8ea6c962d0c4277b7c46c401a93db708e0378 (diff)
downloadcryptography-b32c90c00975c95ae6c00d232b39e8eff6339243.tar.gz
cryptography-b32c90c00975c95ae6c00d232b39e8eff6339243.tar.bz2
cryptography-b32c90c00975c95ae6c00d232b39e8eff6339243.zip
Change the Cryptography-specific variable names
-rw-r--r--cryptography/hazmat/backends/openssl/ssl.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/cryptography/hazmat/backends/openssl/ssl.py b/cryptography/hazmat/backends/openssl/ssl.py
index 7e7de5ce..76bb8363 100644
--- a/cryptography/hazmat/backends/openssl/ssl.py
+++ b/cryptography/hazmat/backends/openssl/ssl.py
@@ -17,10 +17,10 @@ INCLUDES = """
TYPES = """
/* Internally invented symbol to tell us if SSLv2 is supported */
-static const int Cryptography_NO_SSL2;
+static const int Cryptography_HAS_SSL2;
/* Internally invented symbol to tell us if SNI is supported */
-static const int Cryptography_TLSEXT_HOSTNAME;
+static const int Cryptography_HAS_TLSEXT_HOSTNAME;
static const int SSL_FILETYPE_PEM;
static const int SSL_FILETYPE_ASN1;
@@ -244,18 +244,18 @@ void SSL_CTX_set_tlsext_servername_callback(
CUSTOMIZATIONS = """
#ifdef OPENSSL_NO_SSL2
-static const int Cryptography_NO_SSL2 = 1;
+static const int Cryptography_HAS_SSL2 = 0;
SSL_METHOD* (*SSLv2_method)() = NULL;
SSL_METHOD* (*SSLv2_client_method)() = NULL;
SSL_METHOD* (*SSLv2_server_method)() = NULL;
#else
-static const int Cryptography_NO_SSL2 = 0;
+static const int Cryptography_HAS_SSL2 = 1;
#endif
#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
-static const int Cryptography_TLSEXT_HOSTNAME = 1;
+static const int Cryptography_HAS_TLSEXT_HOSTNAME = 1;
#else
-static const int Cryptography_TLSEXT_HOSTNAME = 0;
+static const int Cryptography_HAS_TLSEXT_HOSTNAME = 0;
void (*SSL_set_tlsext_host_name)(SSL *, char *) = NULL;
const char* (*SSL_get_servername)(const SSL *, const int) = NULL;
void (*SSL_CTX_set_tlsext_servername_callback)(