diff options
author | tb <> | 2024-08-31 09:26:18 +0000 |
---|---|---|
committer | tb <> | 2024-08-31 09:26:18 +0000 |
commit | fa06106840d12417b65b1d797ece2e162f6ca2f7 (patch) | |
tree | 2d0e6a77bd6951db3389273540c9f34d62df1eb7 /src/lib/libcrypto/ct/ct_log.c | |
parent | e47979e7652d27e7b364efb7a46ac39336b4cf87 (diff) | |
download | openbsd-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/ct/ct_log.c')
-rw-r--r-- | src/lib/libcrypto/ct/ct_log.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ct/ct_log.c b/src/lib/libcrypto/ct/ct_log.c index eb503a3816..514246ff4f 100644 --- a/src/lib/libcrypto/ct/ct_log.c +++ b/src/lib/libcrypto/ct/ct_log.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ct_log.c,v 1.6 2023/07/08 07:22:58 beck Exp $ */ | 1 | /* $OpenBSD: ct_log.c,v 1.7 2024/08/31 09:26:18 tb Exp $ */ |
2 | /* Author: Adam Eijdenberg <adam.eijdenberg@gmail.com>. */ | 2 | /* Author: Adam Eijdenberg <adam.eijdenberg@gmail.com>. */ |
3 | /* ==================================================================== | 3 | /* ==================================================================== |
4 | * Copyright (c) 1998-2016 The OpenSSL Project. All rights reserved. | 4 | * Copyright (c) 1998-2016 The OpenSSL Project. All rights reserved. |
@@ -67,6 +67,8 @@ | |||
67 | #include <openssl/evp.h> | 67 | #include <openssl/evp.h> |
68 | #include <openssl/safestack.h> | 68 | #include <openssl/safestack.h> |
69 | 69 | ||
70 | #include "conf_local.h" | ||
71 | |||
70 | #include "cryptlib.h" | 72 | #include "cryptlib.h" |
71 | 73 | ||
72 | 74 | ||