diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-09 14:57:29 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-09 14:57:29 +0000 |
commit | f1e56655448bf6cbc233aa9a10ce2b38695a8ae6 (patch) | |
tree | 3bfaeea8235c07b3809b22308d5369ad7948de33 /lib/libcrypto/hidden | |
parent | 79623932562a17337794009dae187546701f4301 (diff) |
Add hidden conf.h, missed in an earlier commit
Diffstat (limited to 'lib/libcrypto/hidden')
-rw-r--r-- | lib/libcrypto/hidden/openssl/conf.h | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/lib/libcrypto/hidden/openssl/conf.h b/lib/libcrypto/hidden/openssl/conf.h new file mode 100644 index 00000000000..9408a543e35 --- /dev/null +++ b/lib/libcrypto/hidden/openssl/conf.h @@ -0,0 +1,74 @@ +/* $OpenBSD: conf.h,v 1.1 2024/04/09 14:57:28 tb Exp $ */ +/* + * Copyright (c) 2024 Bob Beck <beck@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef _LIBCRYPTO_CONF_H +#define _LIBCRYPTO_CONF_H + +#ifndef _MSC_VER +#include_next <openssl/conf.h> +#else +#include "../include/openssl/conf.h" +#endif +#include "crypto_namespace.h" + +LCRYPTO_USED(CONF_set_default_method); +LCRYPTO_USED(CONF_set_nconf); +LCRYPTO_USED(CONF_load); +LCRYPTO_USED(CONF_load_fp); +LCRYPTO_USED(CONF_load_bio); +LCRYPTO_USED(CONF_get_section); +LCRYPTO_USED(CONF_get_string); +LCRYPTO_USED(CONF_get_number); +LCRYPTO_USED(CONF_free); +LCRYPTO_USED(CONF_dump_fp); +LCRYPTO_USED(CONF_dump_bio); +LCRYPTO_USED(OPENSSL_config); +LCRYPTO_USED(OPENSSL_no_config); +LCRYPTO_USED(NCONF_new); +LCRYPTO_USED(NCONF_default); +LCRYPTO_USED(NCONF_WIN32); +LCRYPTO_USED(NCONF_free); +LCRYPTO_USED(NCONF_free_data); +LCRYPTO_USED(NCONF_load); +LCRYPTO_USED(NCONF_load_fp); +LCRYPTO_USED(NCONF_load_bio); +LCRYPTO_USED(NCONF_get_section); +LCRYPTO_USED(NCONF_get_string); +LCRYPTO_USED(NCONF_get_number_e); +LCRYPTO_USED(NCONF_dump_fp); +LCRYPTO_USED(NCONF_dump_bio); +LCRYPTO_USED(CONF_modules_load); +LCRYPTO_USED(CONF_modules_load_file); +LCRYPTO_USED(CONF_modules_unload); +LCRYPTO_USED(CONF_modules_finish); +LCRYPTO_USED(CONF_modules_free); +LCRYPTO_USED(CONF_module_add); +LCRYPTO_USED(CONF_imodule_get_name); +LCRYPTO_USED(CONF_imodule_get_value); +LCRYPTO_USED(CONF_imodule_get_usr_data); +LCRYPTO_USED(CONF_imodule_set_usr_data); +LCRYPTO_USED(CONF_imodule_get_module); +LCRYPTO_USED(CONF_imodule_get_flags); +LCRYPTO_USED(CONF_imodule_set_flags); +LCRYPTO_USED(CONF_module_get_usr_data); +LCRYPTO_USED(CONF_module_set_usr_data); +LCRYPTO_USED(CONF_get1_default_config_file); +LCRYPTO_USED(CONF_parse_list); +LCRYPTO_USED(OPENSSL_load_builtin_modules); +LCRYPTO_USED(ERR_load_CONF_strings); + +#endif /* _LIBCRYPTO_CONF_H */ |