diff options
Diffstat (limited to 'src/lib/libcrypto/x509v3/ext_dat.h')
-rw-r--r-- | src/lib/libcrypto/x509v3/ext_dat.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509v3/ext_dat.h b/src/lib/libcrypto/x509v3/ext_dat.h index 801a585a52..586f116db5 100644 --- a/src/lib/libcrypto/x509v3/ext_dat.h +++ b/src/lib/libcrypto/x509v3/ext_dat.h | |||
@@ -58,9 +58,12 @@ | |||
58 | /* This file contains a table of "standard" extensions */ | 58 | /* This file contains a table of "standard" extensions */ |
59 | 59 | ||
60 | extern X509V3_EXT_METHOD v3_bcons, v3_nscert, v3_key_usage, v3_ext_ku; | 60 | extern X509V3_EXT_METHOD v3_bcons, v3_nscert, v3_key_usage, v3_ext_ku; |
61 | extern X509V3_EXT_METHOD v3_pkey_usage_period, v3_sxnet, v3_info; | 61 | extern X509V3_EXT_METHOD v3_pkey_usage_period, v3_sxnet, v3_info, v3_sinfo; |
62 | extern X509V3_EXT_METHOD v3_ns_ia5_list[], v3_alt[], v3_skey_id, v3_akey_id; | 62 | extern X509V3_EXT_METHOD v3_ns_ia5_list[], v3_alt[], v3_skey_id, v3_akey_id; |
63 | extern X509V3_EXT_METHOD v3_crl_num, v3_crl_reason, v3_cpols, v3_crld; | 63 | extern X509V3_EXT_METHOD v3_crl_num, v3_crl_reason, v3_crl_invdate, v3_cpols, v3_crld; |
64 | extern X509V3_EXT_METHOD v3_ocsp_nonce, v3_ocsp_accresp, v3_ocsp_acutoff; | ||
65 | extern X509V3_EXT_METHOD v3_ocsp_crlid, v3_ocsp_nocheck, v3_ocsp_serviceloc; | ||
66 | extern X509V3_EXT_METHOD v3_crl_hold; | ||
64 | 67 | ||
65 | /* This table will be searched using OBJ_bsearch so it *must* kept in | 68 | /* This table will be searched using OBJ_bsearch so it *must* kept in |
66 | * order of the ext_nid values. | 69 | * order of the ext_nid values. |
@@ -87,8 +90,17 @@ static X509V3_EXT_METHOD *standard_exts[] = { | |||
87 | &v3_crld, | 90 | &v3_crld, |
88 | &v3_ext_ku, | 91 | &v3_ext_ku, |
89 | &v3_crl_reason, | 92 | &v3_crl_reason, |
93 | &v3_crl_invdate, | ||
90 | &v3_sxnet, | 94 | &v3_sxnet, |
91 | &v3_info, | 95 | &v3_info, |
96 | &v3_ocsp_nonce, | ||
97 | &v3_ocsp_crlid, | ||
98 | &v3_ocsp_accresp, | ||
99 | &v3_ocsp_nocheck, | ||
100 | &v3_ocsp_acutoff, | ||
101 | &v3_ocsp_serviceloc, | ||
102 | &v3_crl_hold, | ||
103 | &v3_sinfo | ||
92 | }; | 104 | }; |
93 | 105 | ||
94 | /* Number of standard extensions */ | 106 | /* Number of standard extensions */ |