diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2018-03-17 14:44:35 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2018-03-17 14:44:35 +0000 |
commit | bf037c1124f1c91fc3b2753a4deb2fa72303dbf5 (patch) | |
tree | a5adff2f595a6c11f0e7032cb3585df6d8d75617 /lib/libcrypto/ocsp/ocsp.h | |
parent | 997bec46612fbf334a2325b3e2eef81ac18f1371 (diff) |
Provide OCSP_SINGLERESP_get0_id().
Diffstat (limited to 'lib/libcrypto/ocsp/ocsp.h')
-rw-r--r-- | lib/libcrypto/ocsp/ocsp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/ocsp/ocsp.h b/lib/libcrypto/ocsp/ocsp.h index e3fa6f5a3de..b2c4367f83f 100644 --- a/lib/libcrypto/ocsp/ocsp.h +++ b/lib/libcrypto/ocsp/ocsp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ocsp.h,v 1.11 2016/12/30 16:19:04 jsing Exp $ */ +/* $OpenBSD: ocsp.h,v 1.12 2018/03/17 14:44:34 jsing Exp $ */ /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL * project. */ @@ -511,6 +511,7 @@ int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP *x, int nid, void *value, int crit, unsigned long flags); int OCSP_SINGLERESP_add_ext(OCSP_SINGLERESP *x, X509_EXTENSION *ex, int loc); +const OCSP_CERTID *OCSP_SINGLERESP_get0_id(const OCSP_SINGLERESP *x); OCSP_SINGLERESP *OCSP_SINGLERESP_new(void); void OCSP_SINGLERESP_free(OCSP_SINGLERESP *a); |