summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_conf.c
diff options
context:
space:
mode:
authortb <>2024-08-31 09:21:44 +0000
committertb <>2024-08-31 09:21:44 +0000
commite47979e7652d27e7b364efb7a46ac39336b4cf87 (patch)
tree385ecf672229f7634b674c09baf02af1f1d0936b /src/lib/libcrypto/x509/x509_conf.c
parent118051aad867c86fdfdd1e12985c74aceed9470f (diff)
downloadopenbsd-e47979e7652d27e7b364efb7a46ac39336b4cf87.tar.gz
openbsd-e47979e7652d27e7b364efb7a46ac39336b4cf87.tar.bz2
openbsd-e47979e7652d27e7b364efb7a46ac39336b4cf87.zip
Make CONF_METHOD opaque
Much of conf is designed in such a way that you really have to reach into its structs. This one piece can be hidden. It might even be removed soon. ok beck jsing
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/x509/x509_conf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_conf.c b/src/lib/libcrypto/x509/x509_conf.c
index 25f0ad0b26..27f89072c8 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.22 2024/08/28 08:59:03 tb Exp $ */ 1/* $OpenBSD: x509_conf.c,v 1.23 2024/08/31 09:21:44 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 */
@@ -66,6 +66,7 @@
66#include <openssl/x509.h> 66#include <openssl/x509.h>
67#include <openssl/x509v3.h> 67#include <openssl/x509v3.h>
68 68
69#include "conf_local.h"
69#include "x509_local.h" 70#include "x509_local.h"
70 71
71static int v3_check_critical(const char **value); 72static int v3_check_critical(const char **value);