summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_conf.c
diff options
context:
space:
mode:
authortb <>2024-08-31 09:59:12 +0000
committertb <>2024-08-31 09:59:12 +0000
commitd58c480554b7e690b2dab126d2f8f622324e3a42 (patch)
tree7016f71e4d6409ed51ab72981c135a0cdddf6cbc /src/lib/libcrypto/x509/x509_conf.c
parentc92ddde3194a70c609ab5dd8987a10b6cf10c12f (diff)
downloadopenbsd-d58c480554b7e690b2dab126d2f8f622324e3a42.tar.gz
openbsd-d58c480554b7e690b2dab126d2f8f622324e3a42.tar.bz2
openbsd-d58c480554b7e690b2dab126d2f8f622324e3a42.zip
Retire X509V3_set_conf_lhash()
Thankfully sthen removed the out-of-support PHP versions 7.4 and 8.0, which were the last users of this API, which in turn permitted much of this conf rampage. Now the stub can join its guts in the attic. ok beck jsing
Diffstat (limited to 'src/lib/libcrypto/x509/x509_conf.c')
-rw-r--r--src/lib/libcrypto/x509/x509_conf.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/lib/libcrypto/x509/x509_conf.c b/src/lib/libcrypto/x509/x509_conf.c
index dee9bf65e0..ab78649453 100644
--- a/src/lib/libcrypto/x509/x509_conf.c
+++ b/src/lib/libcrypto/x509/x509_conf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_conf.c,v 1.24 2024/08/31 09:56:50 tb Exp $ */ 1/* $OpenBSD: x509_conf.c,v 1.25 2024/08/31 09:59:12 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 */
@@ -479,13 +479,3 @@ X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, int nid,
479 return X509V3_EXT_nconf_nid(&ctmp, ctx, nid, value); 479 return X509V3_EXT_nconf_nid(&ctmp, ctx, nid, value);
480} 480}
481LCRYPTO_ALIAS(X509V3_EXT_conf_nid); 481LCRYPTO_ALIAS(X509V3_EXT_conf_nid);
482
483/*
484 * XXX - remove everything below in the next bump.
485 */
486
487void
488X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH_OF(CONF_VALUE) *lhash)
489{
490}
491LCRYPTO_ALIAS(X509V3_set_conf_lhash);