aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/hazmat/bindings/openssl/_conditional.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-03-12 09:48:34 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-03-12 09:48:34 -0500
commitd32f2d77f372a651b521f4f895464b411a8c63bc (patch)
tree49d2b36751334695d7c6d4f7da201709b4026cc2 /src/cryptography/hazmat/bindings/openssl/_conditional.py
parent2d0deb14fe2502fcab6cb9ec56f444ad7cd6dd4a (diff)
parent11443c6e15f76317dcb4f4cd21fe101f94428d79 (diff)
downloadcryptography-d32f2d77f372a651b521f4f895464b411a8c63bc.tar.gz
cryptography-d32f2d77f372a651b521f4f895464b411a8c63bc.tar.bz2
cryptography-d32f2d77f372a651b521f4f895464b411a8c63bc.zip
Merge pull request #2807 from reaperhulk/110-patch-26
conditionally bind/remove the SSL_ST/TLS_ST state machine statuses
Diffstat (limited to 'src/cryptography/hazmat/bindings/openssl/_conditional.py')
-rw-r--r--src/cryptography/hazmat/bindings/openssl/_conditional.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/_conditional.py b/src/cryptography/hazmat/bindings/openssl/_conditional.py
index f5999312..8b918995 100644
--- a/src/cryptography/hazmat/bindings/openssl/_conditional.py
+++ b/src/cryptography/hazmat/bindings/openssl/_conditional.py
@@ -404,4 +404,14 @@ CONDITIONAL_NAMES = {
"Cryptography_HAS_AES_CTR128_ENCRYPT": [
"AES_ctr128_encrypt",
],
+ "Cryptography_HAS_SSL_ST": [
+ "SSL_ST_BEFORE",
+ "SSL_ST_OK",
+ "SSL_ST_INIT",
+ "SSL_ST_RENEGOTIATE",
+ ],
+ "Cryptography_HAS_TLS_ST": [
+ "TLS_ST_BEFORE",
+ "TLS_ST_OK",
+ ],
}