diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-20 09:56:41 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-20 09:56:41 -0800 |
commit | 0b648b3939c2cf7598b8b349b61cb84d19a0ca97 (patch) | |
tree | 4c1f3c4530c71e141b7f2e055a41521022fe1c8a | |
parent | 6567c5c7024d29f35875508de1f9979ca9149201 (diff) | |
download | cryptography-0b648b3939c2cf7598b8b349b61cb84d19a0ca97.tar.gz cryptography-0b648b3939c2cf7598b8b349b61cb84d19a0ca97.tar.bz2 cryptography-0b648b3939c2cf7598b8b349b61cb84d19a0ca97.zip |
Move for OpenSSL 0.9.8
-rw-r--r-- | cryptography/hazmat/bindings/openssl/ssl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ssl.py b/cryptography/hazmat/bindings/openssl/ssl.py index 234b17d5..ca3e96c8 100644 --- a/cryptography/hazmat/bindings/openssl/ssl.py +++ b/cryptography/hazmat/bindings/openssl/ssl.py @@ -216,8 +216,6 @@ X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *); void SSL_SESSION_free(SSL_SESSION *); /* Information about actually used cipher */ -const SSL_CIPHER *SSL_get_current_cipher(const SSL *); - const char *SSL_CIPHER_get_name(const SSL_CIPHER *); int SSL_CIPHER_get_bits(const SSL_CIPHER *, int *); char *SSL_CIPHER_get_version(const SSL_CIPHER *); @@ -290,6 +288,8 @@ const SSL_METHOD *SSLv23_client_method(void); SSL_CTX *SSL_CTX_new(SSL_METHOD *); long SSL_CTX_get_timeout(const SSL_CTX *); +const SSL_CIPHER *SSL_get_current_cipher(const SSL *); + /* SNI APIs were introduced in OpenSSL 1.0.0. To continue to support * earlier versions some special handling of these is necessary. */ |