The X509V3_CONF_METHOD goes away
authortb <tb@openbsd.org>
Sat, 31 Aug 2024 10:06:39 +0000 (10:06 +0000)
committertb <tb@openbsd.org>
Sat, 31 Aug 2024 10:06:39 +0000 (10:06 +0000)
No longer used, never really needed.

ok beck jsing

lib/libcrypto/x509/x509v3.h

index 3c55987..c591534 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509v3.h,v 1.33 2024/08/31 10:03:03 tb Exp $ */
+/* $OpenBSD: x509v3.h,v 1.34 2024/08/31 10:06:39 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 1999.
  */
@@ -120,14 +120,6 @@ struct v3_ext_method {
        void *usr_data; /* Any extension specific data */
 };
 
-/* XXX - remove in next bump. */
-typedef struct X509V3_CONF_METHOD_st {
-       char *(*get_string)(void *db, const char *section, const char *value);
-       STACK_OF(CONF_VALUE) *(*get_section)(void *db, const char *section);
-       void (*free_string)(void *db, char *string);
-       void (*free_section)(void *db, STACK_OF(CONF_VALUE) *section);
-} X509V3_CONF_METHOD;
-
 struct v3_ext_ctx {
        #define CTX_TEST 0x1
        int flags;
@@ -135,7 +127,6 @@ struct v3_ext_ctx {
        X509 *subject_cert;
        X509_REQ *subject_req;
        X509_CRL *crl;
-       X509V3_CONF_METHOD *db_meth;    /* XXX - remove in next bump. */
        void *db;
 };