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 */ 75