summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-04-09 14:57:28 +0000
committertb <>2024-04-09 14:57:28 +0000
commit190be22690a7ace69ef54b351225b8b954709c2d (patch)
treef3726d8d7367c01282d42c8c3cfb903af7c4ab2a /src
parent72ca27ed5334f7009a47e6b3965193ac61408fe9 (diff)
downloadopenbsd-190be22690a7ace69ef54b351225b8b954709c2d.tar.gz
openbsd-190be22690a7ace69ef54b351225b8b954709c2d.tar.bz2
openbsd-190be22690a7ace69ef54b351225b8b954709c2d.zip
Add hidden conf.h, missed in an earlier commit
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/hidden/openssl/conf.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/conf.h b/src/lib/libcrypto/hidden/openssl/conf.h
new file mode 100644
index 0000000000..9408a543e3
--- /dev/null
+++ b/src/lib/libcrypto/hidden/openssl/conf.h
@@ -0,0 +1,74 @@
1/* $OpenBSD: conf.h,v 1.1 2024/04/09 14:57:28 tb Exp $ */
2/*
3 * Copyright (c) 2024 Bob Beck <beck@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#ifndef _LIBCRYPTO_CONF_H
19#define _LIBCRYPTO_CONF_H
20
21#ifndef _MSC_VER
22#include_next <openssl/conf.h>
23#else
24#include "../include/openssl/conf.h"
25#endif
26#include "crypto_namespace.h"
27
28LCRYPTO_USED(CONF_set_default_method);
29LCRYPTO_USED(CONF_set_nconf);
30LCRYPTO_USED(CONF_load);
31LCRYPTO_USED(CONF_load_fp);
32LCRYPTO_USED(CONF_load_bio);
33LCRYPTO_USED(CONF_get_section);
34LCRYPTO_USED(CONF_get_string);
35LCRYPTO_USED(CONF_get_number);
36LCRYPTO_USED(CONF_free);
37LCRYPTO_USED(CONF_dump_fp);
38LCRYPTO_USED(CONF_dump_bio);
39LCRYPTO_USED(OPENSSL_config);
40LCRYPTO_USED(OPENSSL_no_config);
41LCRYPTO_USED(NCONF_new);
42LCRYPTO_USED(NCONF_default);
43LCRYPTO_USED(NCONF_WIN32);
44LCRYPTO_USED(NCONF_free);
45LCRYPTO_USED(NCONF_free_data);
46LCRYPTO_USED(NCONF_load);
47LCRYPTO_USED(NCONF_load_fp);
48LCRYPTO_USED(NCONF_load_bio);
49LCRYPTO_USED(NCONF_get_section);
50LCRYPTO_USED(NCONF_get_string);
51LCRYPTO_USED(NCONF_get_number_e);
52LCRYPTO_USED(NCONF_dump_fp);
53LCRYPTO_USED(NCONF_dump_bio);
54LCRYPTO_USED(CONF_modules_load);
55LCRYPTO_USED(CONF_modules_load_file);
56LCRYPTO_USED(CONF_modules_unload);
57LCRYPTO_USED(CONF_modules_finish);
58LCRYPTO_USED(CONF_modules_free);
59LCRYPTO_USED(CONF_module_add);
60LCRYPTO_USED(CONF_imodule_get_name);
61LCRYPTO_USED(CONF_imodule_get_value);
62LCRYPTO_USED(CONF_imodule_get_usr_data);
63LCRYPTO_USED(CONF_imodule_set_usr_data);
64LCRYPTO_USED(CONF_imodule_get_module);
65LCRYPTO_USED(CONF_imodule_get_flags);
66LCRYPTO_USED(CONF_imodule_set_flags);
67LCRYPTO_USED(CONF_module_get_usr_data);
68LCRYPTO_USED(CONF_module_set_usr_data);
69LCRYPTO_USED(CONF_get1_default_config_file);
70LCRYPTO_USED(CONF_parse_list);
71LCRYPTO_USED(OPENSSL_load_builtin_modules);
72LCRYPTO_USED(ERR_load_CONF_strings);
73
74#endif /* _LIBCRYPTO_CONF_H */