diff options
author | tb <> | 2024-04-09 14:57:28 +0000 |
---|---|---|
committer | tb <> | 2024-04-09 14:57:28 +0000 |
commit | 190be22690a7ace69ef54b351225b8b954709c2d (patch) | |
tree | f3726d8d7367c01282d42c8c3cfb903af7c4ab2a /src | |
parent | 72ca27ed5334f7009a47e6b3965193ac61408fe9 (diff) | |
download | openbsd-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.h | 74 |
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 | |||
28 | LCRYPTO_USED(CONF_set_default_method); | ||
29 | LCRYPTO_USED(CONF_set_nconf); | ||
30 | LCRYPTO_USED(CONF_load); | ||
31 | LCRYPTO_USED(CONF_load_fp); | ||
32 | LCRYPTO_USED(CONF_load_bio); | ||
33 | LCRYPTO_USED(CONF_get_section); | ||
34 | LCRYPTO_USED(CONF_get_string); | ||
35 | LCRYPTO_USED(CONF_get_number); | ||
36 | LCRYPTO_USED(CONF_free); | ||
37 | LCRYPTO_USED(CONF_dump_fp); | ||
38 | LCRYPTO_USED(CONF_dump_bio); | ||
39 | LCRYPTO_USED(OPENSSL_config); | ||
40 | LCRYPTO_USED(OPENSSL_no_config); | ||
41 | LCRYPTO_USED(NCONF_new); | ||
42 | LCRYPTO_USED(NCONF_default); | ||
43 | LCRYPTO_USED(NCONF_WIN32); | ||
44 | LCRYPTO_USED(NCONF_free); | ||
45 | LCRYPTO_USED(NCONF_free_data); | ||
46 | LCRYPTO_USED(NCONF_load); | ||
47 | LCRYPTO_USED(NCONF_load_fp); | ||
48 | LCRYPTO_USED(NCONF_load_bio); | ||
49 | LCRYPTO_USED(NCONF_get_section); | ||
50 | LCRYPTO_USED(NCONF_get_string); | ||
51 | LCRYPTO_USED(NCONF_get_number_e); | ||
52 | LCRYPTO_USED(NCONF_dump_fp); | ||
53 | LCRYPTO_USED(NCONF_dump_bio); | ||
54 | LCRYPTO_USED(CONF_modules_load); | ||
55 | LCRYPTO_USED(CONF_modules_load_file); | ||
56 | LCRYPTO_USED(CONF_modules_unload); | ||
57 | LCRYPTO_USED(CONF_modules_finish); | ||
58 | LCRYPTO_USED(CONF_modules_free); | ||
59 | LCRYPTO_USED(CONF_module_add); | ||
60 | LCRYPTO_USED(CONF_imodule_get_name); | ||
61 | LCRYPTO_USED(CONF_imodule_get_value); | ||
62 | LCRYPTO_USED(CONF_imodule_get_usr_data); | ||
63 | LCRYPTO_USED(CONF_imodule_set_usr_data); | ||
64 | LCRYPTO_USED(CONF_imodule_get_module); | ||
65 | LCRYPTO_USED(CONF_imodule_get_flags); | ||
66 | LCRYPTO_USED(CONF_imodule_set_flags); | ||
67 | LCRYPTO_USED(CONF_module_get_usr_data); | ||
68 | LCRYPTO_USED(CONF_module_set_usr_data); | ||
69 | LCRYPTO_USED(CONF_get1_default_config_file); | ||
70 | LCRYPTO_USED(CONF_parse_list); | ||
71 | LCRYPTO_USED(OPENSSL_load_builtin_modules); | ||
72 | LCRYPTO_USED(ERR_load_CONF_strings); | ||
73 | |||
74 | #endif /* _LIBCRYPTO_CONF_H */ | ||