aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/hazmat/bindings/openssl/_conditional.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-11 16:46:37 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-11 16:46:37 -0400
commit11443c6e15f76317dcb4f4cd21fe101f94428d79 (patch)
tree9e333203847a4a2b653d2fbc8bbdf48c22098356 /src/cryptography/hazmat/bindings/openssl/_conditional.py
parente40a03f61e907d0de5fb07624cb6306323de543d (diff)
downloadcryptography-11443c6e15f76317dcb4f4cd21fe101f94428d79.tar.gz
cryptography-11443c6e15f76317dcb4f4cd21fe101f94428d79.tar.bz2
cryptography-11443c6e15f76317dcb4f4cd21fe101f94428d79.zip
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",
+ ],
}