From 012df127b2990a1f73d0d94f5b164663af162446 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 7 Sep 2017 06:11:22 +0800 Subject: add OCSP binding for obtaining information from CertID structure (#3888) * add OCSP binding for obtaining information from CertID structure * empty commit --- src/_cffi_src/openssl/ocsp.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/_cffi_src/openssl/ocsp.py b/src/_cffi_src/openssl/ocsp.py index ea3e5ad1..1701f41c 100644 --- a/src/_cffi_src/openssl/ocsp.py +++ b/src/_cffi_src/openssl/ocsp.py @@ -54,6 +54,8 @@ OCSP_REQUEST *OCSP_REQUEST_new(void); void OCSP_REQUEST_free(OCSP_REQUEST *); int OCSP_request_add1_nonce(OCSP_REQUEST *, unsigned char *, int); int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *, int, void *, int, unsigned long); +int OCSP_id_get0_info(ASN1_OCTET_STRING **, ASN1_OBJECT **, + ASN1_OCTET_STRING **, ASN1_INTEGER **, OCSP_CERTID *); OCSP_REQUEST *d2i_OCSP_REQUEST_bio(BIO *, OCSP_REQUEST **); OCSP_RESPONSE *d2i_OCSP_RESPONSE_bio(BIO *, OCSP_RESPONSE **); int i2d_OCSP_REQUEST_bio(BIO *, OCSP_REQUEST *); -- cgit v1.2.3