diff options
Diffstat (limited to 'src/lib/libcrypto/x509v3/ext_dat.h')
-rw-r--r-- | src/lib/libcrypto/x509v3/ext_dat.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/libcrypto/x509v3/ext_dat.h b/src/lib/libcrypto/x509v3/ext_dat.h index d8328ac468..5c063ac65d 100644 --- a/src/lib/libcrypto/x509v3/ext_dat.h +++ b/src/lib/libcrypto/x509v3/ext_dat.h | |||
@@ -65,6 +65,11 @@ extern X509V3_EXT_METHOD v3_delta_crl, v3_cpols, v3_crld; | |||
65 | extern X509V3_EXT_METHOD v3_ocsp_nonce, v3_ocsp_accresp, v3_ocsp_acutoff; | 65 | extern X509V3_EXT_METHOD v3_ocsp_nonce, v3_ocsp_accresp, v3_ocsp_acutoff; |
66 | extern X509V3_EXT_METHOD v3_ocsp_crlid, v3_ocsp_nocheck, v3_ocsp_serviceloc; | 66 | extern X509V3_EXT_METHOD v3_ocsp_crlid, v3_ocsp_nocheck, v3_ocsp_serviceloc; |
67 | extern X509V3_EXT_METHOD v3_crl_hold, v3_pci; | 67 | extern X509V3_EXT_METHOD v3_crl_hold, v3_pci; |
68 | extern X509V3_EXT_METHOD v3_policy_mappings, v3_policy_constraints; | ||
69 | extern X509V3_EXT_METHOD v3_name_constraints, v3_inhibit_anyp; | ||
70 | #ifndef OPENSSL_NO_RFC3779 | ||
71 | extern X509V3_EXT_METHOD v3_addr, v3_asid; | ||
72 | #endif | ||
68 | 73 | ||
69 | /* This table will be searched using OBJ_bsearch so it *must* kept in | 74 | /* This table will be searched using OBJ_bsearch so it *must* kept in |
70 | * order of the ext_nid values. | 75 | * order of the ext_nid values. |
@@ -97,6 +102,10 @@ static X509V3_EXT_METHOD *standard_exts[] = { | |||
97 | #endif | 102 | #endif |
98 | &v3_sxnet, | 103 | &v3_sxnet, |
99 | &v3_info, | 104 | &v3_info, |
105 | #ifndef OPENSSL_NO_RFC3779 | ||
106 | &v3_addr, | ||
107 | &v3_asid, | ||
108 | #endif | ||
100 | #ifndef OPENSSL_NO_OCSP | 109 | #ifndef OPENSSL_NO_OCSP |
101 | &v3_ocsp_nonce, | 110 | &v3_ocsp_nonce, |
102 | &v3_ocsp_crlid, | 111 | &v3_ocsp_crlid, |
@@ -106,10 +115,14 @@ static X509V3_EXT_METHOD *standard_exts[] = { | |||
106 | &v3_ocsp_serviceloc, | 115 | &v3_ocsp_serviceloc, |
107 | #endif | 116 | #endif |
108 | &v3_sinfo, | 117 | &v3_sinfo, |
118 | &v3_policy_constraints, | ||
109 | #ifndef OPENSSL_NO_OCSP | 119 | #ifndef OPENSSL_NO_OCSP |
110 | &v3_crl_hold, | 120 | &v3_crl_hold, |
111 | #endif | 121 | #endif |
112 | &v3_pci, | 122 | &v3_pci, |
123 | &v3_name_constraints, | ||
124 | &v3_policy_mappings, | ||
125 | &v3_inhibit_anyp | ||
113 | }; | 126 | }; |
114 | 127 | ||
115 | /* Number of standard extensions */ | 128 | /* Number of standard extensions */ |