diff options
author | cyli <cyli@twistedmatrix.com> | 2013-11-11 09:47:28 -0800 |
---|---|---|
committer | cyli <cyli@twistedmatrix.com> | 2013-12-20 13:39:44 -0800 |
commit | 1c6110923d12b877390dcaa2ca07080261fca38d (patch) | |
tree | 94967e2a1d14a5de50c6a17ea8dd7db28be8eac1 | |
parent | bef5768d9e691c094f19bc4e611367d2e7b8b573 (diff) | |
download | cryptography-1c6110923d12b877390dcaa2ca07080261fca38d.tar.gz cryptography-1c6110923d12b877390dcaa2ca07080261fca38d.tar.bz2 cryptography-1c6110923d12b877390dcaa2ca07080261fca38d.zip |
Remove some functions that are dependent upon the stacksafe macro STACK_OF
-rw-r--r-- | cryptography/hazmat/backends/openssl/ssl.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cryptography/hazmat/backends/openssl/ssl.py b/cryptography/hazmat/backends/openssl/ssl.py index 09d342b8..3de2e1e0 100644 --- a/cryptography/hazmat/backends/openssl/ssl.py +++ b/cryptography/hazmat/backends/openssl/ssl.py @@ -148,13 +148,10 @@ int SSL_pending(const SSL *); int SSL_write(SSL *, const void *, int); int SSL_read(SSL *, void *, int); X509 *SSL_get_peer_certificate(const SSL *); -struct stack_st_X509 *SSL_get_peer_cert_chain(const SSL *); int SSL_get_error(const SSL *, int); int SSL_do_handshake(SSL *); int SSL_shutdown(SSL *); -struct stack_st_SSL_CIPHER *SSL_get_ciphers(const SSL *); const char *SSL_get_cipher_list(const SSL *, int); -struct stack_st_X509_NAME *SSL_get_client_CA_list(const SSL *); /* context */ void SSL_CTX_free(SSL_CTX *); @@ -176,11 +173,9 @@ int SSL_CTX_use_certificate_file(SSL_CTX *, const char *, int); int SSL_CTX_use_certificate_chain_file(SSL_CTX *, const char *); int SSL_CTX_use_PrivateKey(SSL_CTX *, EVP_PKEY *); int SSL_CTX_use_PrivateKey_file(SSL_CTX *, const char *, int); -struct stack_st_X509_NAME *SSL_CTX_get_client_CA_list(const SSL_CTX *); void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); int SSL_CTX_add_client_CA(SSL_CTX *, X509 *); -void SSL_CTX_set_client_CA_list(SSL_CTX *, struct stack_st_X509_NAME *); /* X509_STORE_CTX */ int X509_STORE_CTX_get_error(X509_STORE_CTX *); |