aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-29 08:20:52 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-29 08:20:52 -0800
commit0cbe7a16e6c8be28ab8b3eb520ca9c271b8ab5ae (patch)
tree1c68664bd79ac1780b510b28fb2d87dce3289dba
parentc9e4128a8d1aff8a478e4346826cfa05d6f4fcc1 (diff)
downloadcryptography-0cbe7a16e6c8be28ab8b3eb520ca9c271b8ab5ae.tar.gz
cryptography-0cbe7a16e6c8be28ab8b3eb520ca9c271b8ab5ae.tar.bz2
cryptography-0cbe7a16e6c8be28ab8b3eb520ca9c271b8ab5ae.zip
Restore exposing a symbol when it's available. Refs #351
-rw-r--r--cryptography/hazmat/backends/openssl/ssl.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/cryptography/hazmat/backends/openssl/ssl.py b/cryptography/hazmat/backends/openssl/ssl.py
index 2b1fb4a3..4322cc76 100644
--- a/cryptography/hazmat/backends/openssl/ssl.py
+++ b/cryptography/hazmat/backends/openssl/ssl.py
@@ -32,6 +32,8 @@ static const int Cryptography_HAS_RELEASE_BUFFERS;
*/
static const int Cryptography_HAS_OP_NO_COMPRESSION;
+static const int Cryptography_HAS_SSL_OP_MSIE_SSLV2_RSA_PADDING;
+
static const int SSL_FILETYPE_PEM;
static const int SSL_FILETYPE_ASN1;
static const int SSL_ERROR_NONE;
@@ -54,6 +56,7 @@ static const int SSL_OP_NETSCAPE_CHALLENGE_BUG;
static const int SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG;
static const int SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG;
static const int SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER;
+static const int SSL_OP_MSIE_SSLV2_RSA_PADDING;
static const int SSL_OP_SSLEAY_080_CLIENT_DH_BUG;
static const int SSL_OP_TLS_D5_BUG;
static const int SSL_OP_TLS_BLOCK_PADDING_BUG;
@@ -294,6 +297,13 @@ static const long Cryptography_HAS_OP_NO_COMPRESSION = 1;
static const long Cryptography_HAS_OP_NO_COMPRESSION = 0;
const long SSL_OP_NO_COMPRESSION = 0;
#endif
+
+#ifdef SSL_OP_MSIE_SSLV2_RSA_PADDING
+static const long Cryptography_HAS_SSL_OP_MSIE_SSLV2_RSA_PADDING = 1;
+#else
+static const long Cryptography_HAS_SSL_OP_MSIE_SSLV2_RSA_PADDING = 0;
+const long SSL_OP_MSIE_SSLV2_RSA_PADDING = 0;
+#endif
"""
CONDITIONAL_NAMES = {
@@ -317,4 +327,7 @@ CONDITIONAL_NAMES = {
"SSL_OP_NO_COMPRESSION",
],
+ "Cryptography_HAS_SSL_OP_MSIE_SSLV2_RSA_PADDING": [
+ "SSL_OP_MSIE_SSLV2_RSA_PADDING",
+ ],
}