summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/asn1_gen.c
diff options
context:
space:
mode:
authortb <>2024-08-31 09:26:18 +0000
committertb <>2024-08-31 09:26:18 +0000
commitfa06106840d12417b65b1d797ece2e162f6ca2f7 (patch)
tree2d0e6a77bd6951db3389273540c9f34d62df1eb7 /src/lib/libcrypto/asn1/asn1_gen.c
parente47979e7652d27e7b364efb7a46ac39336b4cf87 (diff)
downloadopenbsd-fa06106840d12417b65b1d797ece2e162f6ca2f7.tar.gz
openbsd-fa06106840d12417b65b1d797ece2e162f6ca2f7.tar.bz2
openbsd-fa06106840d12417b65b1d797ece2e162f6ca2f7.zip
Unexport some conf layers unused outside of libcrypto
imodules are called imodules because they contain Information about modules that have been Initialized. Which one of these two I it is is anyone's best guess. Why anything outside of libcrypto would ever possibly care will also remain a mystery. Remove the old way of adding a conf module, user data, stop allowing to set a method (it's opaque now, remember?) and drop a couple bits more from the public api interface. ok beck jsing
Diffstat (limited to 'src/lib/libcrypto/asn1/asn1_gen.c')
-rw-r--r--src/lib/libcrypto/asn1/asn1_gen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/asn1_gen.c b/src/lib/libcrypto/asn1/asn1_gen.c
index c7eafd7267..4b8d7051ab 100644
--- a/src/lib/libcrypto/asn1/asn1_gen.c
+++ b/src/lib/libcrypto/asn1/asn1_gen.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: asn1_gen.c,v 1.22 2024/05/17 02:57:26 tb Exp $ */ 1/* $OpenBSD: asn1_gen.c,v 1.23 2024/08/31 09:26:18 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 2002. 3 * project 2002.
4 */ 4 */
@@ -63,6 +63,7 @@
63#include <openssl/x509v3.h> 63#include <openssl/x509v3.h>
64 64
65#include "asn1_local.h" 65#include "asn1_local.h"
66#include "conf_local.h"
66 67
67#define ASN1_GEN_FLAG 0x10000 68#define ASN1_GEN_FLAG 0x10000
68#define ASN1_GEN_FLAG_IMP (ASN1_GEN_FLAG|1) 69#define ASN1_GEN_FLAG_IMP (ASN1_GEN_FLAG|1)