aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/ext_dat.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-12-15 13:42:00 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-12-15 13:42:00 +0000
commitc08523d862276964e65d6a1de07439b9d0c2a6da (patch)
treea56851a1fabcd29f07afbe647eb3f1ebc1858ce7 /crypto/x509v3/ext_dat.h
parent137e601277dd2064e9eea9cc5877bb67d7589c4e (diff)
downloadopenssl-c08523d862276964e65d6a1de07439b9d0c2a6da.tar.gz
Implement some standard OCSP extensions in the v3 code. These
are all raw print only extensions at present.
Diffstat (limited to 'crypto/x509v3/ext_dat.h')
-rw-r--r--crypto/x509v3/ext_dat.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/crypto/x509v3/ext_dat.h b/crypto/x509v3/ext_dat.h
index edccd2249d..8bf8c7aa35 100644
--- a/crypto/x509v3/ext_dat.h
+++ b/crypto/x509v3/ext_dat.h
@@ -61,7 +61,8 @@ extern X509V3_EXT_METHOD v3_bcons, v3_nscert, v3_key_usage, v3_ext_ku;
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;
+extern X509V3_EXT_METHOD v3_ocsp_nonce, v3_ocsp_accresp, v3_ocsp_acutoff;
+extern X509V3_EXT_METHOD v3_ocsp_crlid;
/* This table will be searched using OBJ_bsearch so it *must* kept in
* order of the ext_nid values.
@@ -90,7 +91,10 @@ static X509V3_EXT_METHOD *standard_exts[] = {
&v3_crl_reason,
&v3_sxnet,
&v3_info,
-&v3_ocsp_nonce
+&v3_ocsp_nonce,
+&v3_ocsp_crlid,
+&v3_ocsp_accresp,
+&v3_ocsp_acutoff
};
/* Number of standard extensions */