diff options
author | tb <> | 2023-04-16 07:49:36 +0000 |
---|---|---|
committer | tb <> | 2023-04-16 07:49:36 +0000 |
commit | 3731ebaa0627ad10026d9d1e11639f40a751bf9d (patch) | |
tree | 415ddc1669aaad1173c7cfce0c6ce7eb603acca2 | |
parent | f8c41f914247cad96d10b6b4456fe88c6f6d7e93 (diff) | |
download | openbsd-3731ebaa0627ad10026d9d1e11639f40a751bf9d.tar.gz openbsd-3731ebaa0627ad10026d9d1e11639f40a751bf9d.tar.bz2 openbsd-3731ebaa0627ad10026d9d1e11639f40a751bf9d.zip |
Drop support for the ProxyCertInfo extension
This removes the ProxyCertInfo extension from RFC 3820 from the list of
supported extensions. Since it is a critical extension, this means that
certificates containing it will no longer be considered valid by default.
ok jsing
-rw-r--r-- | src/lib/libcrypto/x509/ext_dat.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509/ext_dat.h b/src/lib/libcrypto/x509/ext_dat.h index 59815c95a6..253f1f844c 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.4 2021/11/24 19:22:14 tb Exp $ */ | 1 | /* $OpenBSD: ext_dat.h,v 1.5 2023/04/16 07:49:36 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 | */ |
@@ -69,7 +69,7 @@ extern X509V3_EXT_METHOD v3_crl_num, v3_crl_reason, v3_crl_invdate; | |||
69 | extern X509V3_EXT_METHOD v3_delta_crl, v3_cpols, v3_crld, v3_freshest_crl; | 69 | extern X509V3_EXT_METHOD v3_delta_crl, v3_cpols, v3_crld, v3_freshest_crl; |
70 | extern X509V3_EXT_METHOD v3_ocsp_nonce, v3_ocsp_accresp, v3_ocsp_acutoff; | 70 | extern X509V3_EXT_METHOD v3_ocsp_nonce, v3_ocsp_accresp, v3_ocsp_acutoff; |
71 | extern X509V3_EXT_METHOD v3_ocsp_crlid, v3_ocsp_nocheck, v3_ocsp_serviceloc; | 71 | extern X509V3_EXT_METHOD v3_ocsp_crlid, v3_ocsp_nocheck, v3_ocsp_serviceloc; |
72 | extern X509V3_EXT_METHOD v3_crl_hold, v3_pci; | 72 | extern X509V3_EXT_METHOD v3_crl_hold; |
73 | extern X509V3_EXT_METHOD v3_policy_mappings, v3_policy_constraints; | 73 | extern X509V3_EXT_METHOD v3_policy_mappings, v3_policy_constraints; |
74 | extern X509V3_EXT_METHOD v3_name_constraints, v3_inhibit_anyp, v3_idp; | 74 | extern X509V3_EXT_METHOD v3_name_constraints, v3_inhibit_anyp, v3_idp; |
75 | extern const X509V3_EXT_METHOD v3_addr, v3_asid; | 75 | extern const X509V3_EXT_METHOD v3_addr, v3_asid; |
@@ -123,7 +123,6 @@ static const X509V3_EXT_METHOD *standard_exts[] = { | |||
123 | #ifndef OPENSSL_NO_OCSP | 123 | #ifndef OPENSSL_NO_OCSP |
124 | &v3_crl_hold, | 124 | &v3_crl_hold, |
125 | #endif | 125 | #endif |
126 | &v3_pci, | ||
127 | &v3_name_constraints, | 126 | &v3_name_constraints, |
128 | &v3_policy_mappings, | 127 | &v3_policy_mappings, |
129 | &v3_inhibit_anyp, | 128 | &v3_inhibit_anyp, |