aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-09-07 06:11:22 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2017-09-06 18:11:22 -0400
commit012df127b2990a1f73d0d94f5b164663af162446 (patch)
treed15d372ab83633eff108ed9a7a0784d4c6dfc513 /src
parent8396d43811f28b079a9d391aaf6701a4455abbfd (diff)
downloadcryptography-012df127b2990a1f73d0d94f5b164663af162446.tar.gz
cryptography-012df127b2990a1f73d0d94f5b164663af162446.tar.bz2
cryptography-012df127b2990a1f73d0d94f5b164663af162446.zip
add OCSP binding for obtaining information from CertID structure (#3888)
* add OCSP binding for obtaining information from CertID structure * empty commit
Diffstat (limited to 'src')
-rw-r--r--src/_cffi_src/openssl/ocsp.py2
1 files changed, 2 insertions, 0 deletions
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 *);