aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2019-11-24 05:54:51 +0100
committerAlex Gaynor <alex.gaynor@gmail.com>2019-11-23 23:54:51 -0500
commit7247665f76cf849fb5b3020a28cfc86c400374cc (patch)
tree5f756af35262190d81725ce1dade3122c777197b /src
parent0538ca640c980f5a8fa75afbc916ad5d9ee793c9 (diff)
downloadcryptography-7247665f76cf849fb5b3020a28cfc86c400374cc.tar.gz
cryptography-7247665f76cf849fb5b3020a28cfc86c400374cc.tar.bz2
cryptography-7247665f76cf849fb5b3020a28cfc86c400374cc.zip
add SSL_get_verify_result (#5071)
Diffstat (limited to 'src')
-rw-r--r--src/_cffi_src/openssl/ssl.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/ssl.py b/src/_cffi_src/openssl/ssl.py
index 59ff35ad..1b7d02f3 100644
--- a/src/_cffi_src/openssl/ssl.py
+++ b/src/_cffi_src/openssl/ssl.py
@@ -214,6 +214,7 @@ Cryptography_STACK_OF_X509 *SSL_get0_verified_chain(const SSL *);
Cryptography_STACK_OF_X509_NAME *SSL_get_client_CA_list(const SSL *);
int SSL_get_error(const SSL *, int);
+long SSL_get_verify_result(const SSL *ssl);
int SSL_do_handshake(SSL *);
int SSL_shutdown(SSL *);
int SSL_renegotiate(SSL *);