diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/x509/x509v3.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/lib/libcrypto/x509/x509v3.h b/src/lib/libcrypto/x509/x509v3.h index 3c55987d47..c59153496c 100644 --- a/src/lib/libcrypto/x509/x509v3.h +++ b/src/lib/libcrypto/x509/x509v3.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509v3.h,v 1.33 2024/08/31 10:03:03 tb Exp $ */ | 1 | /* $OpenBSD: x509v3.h,v 1.34 2024/08/31 10:06:39 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 | */ |
@@ -120,14 +120,6 @@ struct v3_ext_method { | |||
120 | void *usr_data; /* Any extension specific data */ | 120 | void *usr_data; /* Any extension specific data */ |
121 | }; | 121 | }; |
122 | 122 | ||
123 | /* XXX - remove in next bump. */ | ||
124 | typedef struct X509V3_CONF_METHOD_st { | ||
125 | char *(*get_string)(void *db, const char *section, const char *value); | ||
126 | STACK_OF(CONF_VALUE) *(*get_section)(void *db, const char *section); | ||
127 | void (*free_string)(void *db, char *string); | ||
128 | void (*free_section)(void *db, STACK_OF(CONF_VALUE) *section); | ||
129 | } X509V3_CONF_METHOD; | ||
130 | |||
131 | struct v3_ext_ctx { | 123 | struct v3_ext_ctx { |
132 | #define CTX_TEST 0x1 | 124 | #define CTX_TEST 0x1 |
133 | int flags; | 125 | int flags; |
@@ -135,7 +127,6 @@ struct v3_ext_ctx { | |||
135 | X509 *subject_cert; | 127 | X509 *subject_cert; |
136 | X509_REQ *subject_req; | 128 | X509_REQ *subject_req; |
137 | X509_CRL *crl; | 129 | X509_CRL *crl; |
138 | X509V3_CONF_METHOD *db_meth; /* XXX - remove in next bump. */ | ||
139 | void *db; | 130 | void *db; |
140 | }; | 131 | }; |
141 | 132 | ||