summaryrefslogtreecommitdiff
path: root/lib/libcrypto/x509
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-08-31 10:06:40 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-08-31 10:06:40 +0000
commit4fbad8e8ae7eb03ad896fc90e4ba69fe0f891c2d (patch)
treef6853c93dfe32e52f2d986d43297b36e29b27944 /lib/libcrypto/x509
parent67f276391c595aed59360aed34326fa37ba1cd76 (diff)
The X509V3_CONF_METHOD goes away
No longer used, never really needed. ok beck jsing
Diffstat (limited to 'lib/libcrypto/x509')
-rw-r--r--lib/libcrypto/x509/x509v3.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/libcrypto/x509/x509v3.h b/lib/libcrypto/x509/x509v3.h
index 3c55987d47c..c59153496c5 100644
--- a/lib/libcrypto/x509/x509v3.h
+++ b/lib/libcrypto/x509/x509v3.h
@@ -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;
};