aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/ext_dat.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-12-16 01:58:58 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-12-16 01:58:58 +0000
commitf1a6a0d4ddbeb9470d2b03e447466997729c2aac (patch)
tree97a95564ad404bf329d32016bfac7df079799618 /crypto/x509v3/ext_dat.h
parent9c67ab2f26bb6d4a6955406d028a79e763223849 (diff)
downloadopenssl-f1a6a0d4ddbeb9470d2b03e447466997729c2aac.tar.gz
Add support for the noCheck OCSP extension. This is
just a NULL and appears in a certificate.
Diffstat (limited to 'crypto/x509v3/ext_dat.h')
-rw-r--r--crypto/x509v3/ext_dat.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/x509v3/ext_dat.h b/crypto/x509v3/ext_dat.h
index 8bf8c7aa35..98e1c599ec 100644
--- a/crypto/x509v3/ext_dat.h
+++ b/crypto/x509v3/ext_dat.h
@@ -62,7 +62,7 @@ extern X509V3_EXT_METHOD v3_pkey_usage_period, v3_sxnet, v3_info;
extern X509V3_EXT_METHOD v3_ns_ia5_list[], v3_alt[], v3_skey_id, v3_akey_id;
extern X509V3_EXT_METHOD v3_crl_num, v3_crl_reason, v3_cpols, v3_crld;
extern X509V3_EXT_METHOD v3_ocsp_nonce, v3_ocsp_accresp, v3_ocsp_acutoff;
-extern X509V3_EXT_METHOD v3_ocsp_crlid;
+extern X509V3_EXT_METHOD v3_ocsp_crlid, v3_ocsp_nocheck;
/* This table will be searched using OBJ_bsearch so it *must* kept in
* order of the ext_nid values.
@@ -94,6 +94,7 @@ static X509V3_EXT_METHOD *standard_exts[] = {
&v3_ocsp_nonce,
&v3_ocsp_crlid,
&v3_ocsp_accresp,
+&v3_ocsp_nocheck,
&v3_ocsp_acutoff
};