From 62fad4c7830555b9cc693b139fbd09a0a46ec291 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 20 Nov 2015 18:34:00 +0100 Subject: Add more CRYPTO_EX_DATA functions The patch adds a couple of additional functions to create, store and retrieve ex_data on SSL, SSL_CTX and X509 objects. It also adds the missing get_ex_new_index function for X509_STORE_CTX. Signed-off-by: Christian Heimes --- src/_cffi_src/openssl/x509.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/_cffi_src/openssl/x509.py') diff --git a/src/_cffi_src/openssl/x509.py b/src/_cffi_src/openssl/x509.py index ebb78a31..b5d461ab 100644 --- a/src/_cffi_src/openssl/x509.py +++ b/src/_cffi_src/openssl/x509.py @@ -149,6 +149,12 @@ X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *); X509_EXTENSION *X509_get_ext(X509 *, int); int X509_get_ext_by_NID(X509 *, int, int); +/* CRYPTO_EX_DATA */ +int X509_get_ex_new_index(long, void *, CRYPTO_EX_new *, CRYPTO_EX_dup *, + CRYPTO_EX_free *); +int X509_set_ex_data(X509 *, int, void *); +void *X509_get_ex_data(X509 *, int); + int X509_EXTENSION_get_critical(X509_EXTENSION *); ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *); void X509_EXTENSION_free(X509_EXTENSION *); -- cgit v1.2.3