summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/ext_dat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/x509/ext_dat.h')
-rw-r--r--src/lib/libcrypto/x509/ext_dat.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/ext_dat.h b/src/lib/libcrypto/x509/ext_dat.h
index 18d60b761d..59815c95a6 100644
--- a/src/lib/libcrypto/x509/ext_dat.h
+++ b/src/lib/libcrypto/x509/ext_dat.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ext_dat.h,v 1.3 2021/09/02 21:27:26 job Exp $ */ 1/* $OpenBSD: ext_dat.h,v 1.4 2021/11/24 19:22:14 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 1999. 3 * project 1999.
4 */ 4 */
@@ -73,6 +73,7 @@ extern X509V3_EXT_METHOD v3_crl_hold, v3_pci;
73extern X509V3_EXT_METHOD v3_policy_mappings, v3_policy_constraints; 73extern X509V3_EXT_METHOD v3_policy_mappings, v3_policy_constraints;
74extern X509V3_EXT_METHOD v3_name_constraints, v3_inhibit_anyp, v3_idp; 74extern X509V3_EXT_METHOD v3_name_constraints, v3_inhibit_anyp, v3_idp;
75extern const X509V3_EXT_METHOD v3_addr, v3_asid; 75extern const X509V3_EXT_METHOD v3_addr, v3_asid;
76extern const X509V3_EXT_METHOD v3_ct_scts[3];
76 77
77/* This table will be searched using OBJ_bsearch so it *must* kept in 78/* This table will be searched using OBJ_bsearch so it *must* kept in
78 * order of the ext_nid values. 79 * order of the ext_nid values.
@@ -129,6 +130,11 @@ static const X509V3_EXT_METHOD *standard_exts[] = {
129 &v3_idp, 130 &v3_idp,
130 &v3_alt[2], 131 &v3_alt[2],
131 &v3_freshest_crl, 132 &v3_freshest_crl,
133#ifndef OPENSSL_NO_CT
134 &v3_ct_scts[0],
135 &v3_ct_scts[1],
136 &v3_ct_scts[2],
137#endif
132}; 138};
133 139
134/* Number of standard extensions */ 140/* Number of standard extensions */