static void oid_module_finish(CONF_IMODULE *md)
{
- int_obj_cleanup();
+ obj_cleanup_int();
}
void ASN1_add_oid_module(void)
return (1);
}
-void int_bio_sock_cleanup(void)
+void bio_sock_cleanup_int(void)
{
# ifdef OPENSSL_SYS_WINDOWS
if (wsa_init_done) {
zlib_loaded++;
if (!OPENSSL_init_crypto(OPENSSL_INIT_ZLIB, NULL)) {
- int_comp_zlib_cleanup();
+ comp_zlib_cleanup_int();
return meth;
}
if (zlib_loaded)
return (meth);
}
-void int_comp_zlib_cleanup(void)
+void comp_zlib_cleanup_int(void)
{
#ifdef ZLIB_SHARED
if (zlib_dso != NULL)
return 0;
}
-void int_conf_modules_free(void)
+void conf_modules_free_int(void)
{
CONF_modules_finish();
CONF_modules_unload(1);
}
#endif
-void int_openssl_config(const char *config_name)
+void openssl_config_int(const char *config_name)
{
if (openssl_configured)
return;
openssl_configured = 1;
}
-void int_openssl_no_config(void)
+void openssl_no_config_int(void)
{
openssl_configured = 1;
}
#ifndef HAVE_CRYPTODEV
-void int_engine_load_cryptodev(void)
+void engine_load_cryptodev_int(void)
{
/* This is a NOP on platforms without /dev/crypto */
return;
#endif
static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
void (*f) (void));
-void int_engine_load_cryptodev(void);
+void engine_load_cryptodev_int(void);
static const ENGINE_CMD_DEFN cryptodev_defns[] = {
{0, NULL, NULL, 0}
return (1);
}
-void int_engine_load_cryptodev(void)
+void engine_load_cryptodev_int(void)
{
ENGINE *engine = ENGINE_new();
int fd;
return ret;
}
-void int_engine_load_dynamic(void)
+void engine_load_dynamic_int(void)
{
ENGINE *toadd = engine_dynamic();
if (!toadd)
/*
* Any code that will need cleanup operations should use these functions to
- * register callbacks. int_engine_cleanup() will call all registered
+ * register callbacks. engine_cleanup_int() will call all registered
* callbacks in order. NB: both the "add" functions assume the engine lock to
* already be held (in "write" mode).
*/
/* Cleanup stuff */
/*
- * int_engine_cleanup() is coded such that anything that does work that will
+ * engine_cleanup_int() is coded such that anything that does work that will
* need cleanup can register a "cleanup" callback here. That way we don't get
* linker bloat by referring to all *possible* cleanups, but any linker bloat
* into code "X" will cause X's cleanup function to end up here.
OPENSSL_free(item);
}
-void int_engine_cleanup(void)
+void engine_cleanup_int(void)
{
if (int_cleanup_check(0)) {
sk_ENGINE_CLEANUP_ITEM_pop_free(cleanup_stack,
/*
* This cleanup function is only needed internally. If it should be called,
- * we register it with the "int_engine_cleanup()" stack to be called during
+ * we register it with the "engine_cleanup_int()" stack to be called during
* cleanup.
*/
return ret;
}
-void int_engine_load_openssl(void)
+void engine_load_openssl_int(void)
{
ENGINE *toadd = engine_openssl();
if (!toadd)
return ret;
}
-void int_engine_load_rdrand(void)
+void engine_load_rdrand_int(void)
{
extern unsigned int OPENSSL_ia32cap_P[];
}
}
#else
-void int_engine_load_rdrand(void)
+void engine_load_rdrand_int(void)
{
}
#endif
CRYPTO_THREAD_unlock(err_string_lock);
}
-void int_err_free_strings(void)
+void err_free_strings_int(void)
{
CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
#include <openssl/async.h>
#include <openssl/kdf.h>
-void int_err_load_crypto_strings(void)
+void err_load_crypto_strings_int(void)
{
#ifdef OPENSSL_FIPS
FIPS_set_error_callbacks(ERR_put_error, ERR_add_error_vdata);
#include <openssl/pkcs12.h>
#include <openssl/objects.h>
-void int_openssl_add_all_ciphers(void)
+void openssl_add_all_ciphers_int(void)
{
#ifndef OPENSSL_NO_DES
#include <openssl/pkcs12.h>
#include <openssl/objects.h>
-void int_openssl_add_all_digests(void)
+void openssl_add_all_digests_int(void)
{
#ifndef OPENSSL_NO_MD4
EVP_add_digest(EVP_md4());
return (cp);
}
-void int_evp_cleanup(void)
+void evp_cleanup_int(void)
{
OBJ_NAME_cleanup(OBJ_NAME_TYPE_CIPHER_METH);
OBJ_NAME_cleanup(OBJ_NAME_TYPE_MD_METH);
EVP_PBE_cleanup();
if (obj_cleanup_defer == 2) {
obj_cleanup_defer = 0;
- int_obj_cleanup();
+ obj_cleanup_int();
}
OBJ_sigid_free();
}
* called under potential race-conditions anyway (it's for program shutdown
* after all).
*/
-void int_crypto_cleanup_all_ex_data(void)
+void crypto_cleanup_all_ex_data_int(void)
{
int i;
extern unsigned int OPENSSL_ia32cap_P[];
void OPENSSL_showfatal(const char *fmta, ...);
extern int OPENSSL_NONPIC_relocated;
-void int_crypto_cleanup_all_ex_data(void);
+void crypto_cleanup_all_ex_data_int(void);
#ifdef __cplusplus
}
#include <openssl/engine.h>
-void int_engine_load_openssl(void);
-void int_engine_load_cryptodev(void);
-void int_engine_load_rdrand(void);
-void int_engine_load_dynamic(void);
-void int_engine_load_padlock(void);
-void int_engine_load_capi(void);
-void int_engine_load_dasync(void);
-void int_engine_load_afalg(void);
-void int_engine_cleanup(void);
+void engine_load_openssl_int(void);
+void engine_load_cryptodev_int(void);
+void engine_load_rdrand_int(void);
+void engine_load_dynamic_int(void);
+void engine_load_padlock_int(void);
+void engine_load_capi_int(void);
+void engine_load_dasync_int(void);
+void engine_load_afalg_int(void);
+void engine_cleanup_int(void);
} /* EVP_PKEY */ ;
-void int_openssl_add_all_ciphers(void);
-void int_openssl_add_all_digests(void);
-void int_evp_cleanup(void);
+void openssl_add_all_ciphers_int(void);
+void openssl_add_all_digests_int(void);
+void evp_cleanup_int(void);
#include <openssl/objects.h>
-void int_obj_cleanup(void);
+void obj_cleanup_int(void);
#include <openssl/rand.h>
-void int_rand_cleanup(void);
+void rand_cleanup_int(void);
#if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_load_crypto_strings: "
- "int_err_load_crypto_strings()\n");
+ "err_load_crypto_strings_int()\n");
# endif
- int_err_load_crypto_strings();
+ err_load_crypto_strings_int();
#endif
load_crypto_strings_inited = 1;
}
#ifndef OPENSSL_NO_AUTOALGINIT
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_ciphers: "
- "int_openssl_add_all_ciphers()\n");
+ "openssl_add_all_ciphers_int()\n");
# endif
- int_openssl_add_all_ciphers();
+ openssl_add_all_ciphers_int();
# ifndef OPENSSL_NO_ENGINE
# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
ENGINE_setup_bsd_cryptodev();
#ifndef OPENSSL_NO_AUTOALGINIT
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_digests: "
- "int_openssl_add_all_digests()\n");
+ "openssl_add_all_digests()\n");
# endif
- int_openssl_add_all_digests();
+ openssl_add_all_digests_int();
# ifndef OPENSSL_NO_ENGINE
# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
ENGINE_setup_bsd_cryptodev();
{
#ifdef OPENSSL_INIT_DEBUG
fprintf(stderr,
- "OPENSSL_INIT: ossl_init_config: int_openssl_config(%s)\n",
+ "OPENSSL_INIT: ossl_init_config: openssl_config(%s)\n",
config_filename==NULL?"NULL":config_filename);
#endif
- int_openssl_config(config_filename);
+ openssl_config_int(config_filename);
config_inited = 1;
}
static void ossl_init_no_config(void)
{
#ifdef OPENSSL_INIT_DEBUG
fprintf(stderr,
- "OPENSSL_INIT: ossl_init_config: int_openssl_no_config()\n");
+ "OPENSSL_INIT: ossl_init_config: openssl_no_config_int()\n");
#endif
- int_openssl_no_config();
+ openssl_no_config_int();
config_inited = 1;
}
{
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_openssl: "
- "int_engine_load_openssl()\n");
+ "engine_load_openssl_int()\n");
# endif
- int_engine_load_openssl();
+ engine_load_openssl_int();
}
# if !defined(OPENSSL_NO_HW) && \
(defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
{
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_cryptodev: "
- "int_engine_load_cryptodev()\n");
+ "engine_load_cryptodev_int()\n");
# endif
- int_engine_load_cryptodev();
+ engine_load_cryptodev_int();
}
# endif
{
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_rdrand: "
- "int_engine_load_rdrand()\n");
+ "engine_load_rdrand_int()\n");
# endif
- int_engine_load_rdrand();
+ engine_load_rdrand_int();
}
# endif
static CRYPTO_ONCE engine_dynamic = CRYPTO_ONCE_STATIC_INIT;
{
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dynamic: "
- "int_engine_load_dynamic()\n");
+ "engine_load_dynamic_int()\n");
# endif
- int_engine_load_dynamic();
+ engine_load_dynamic_int();
}
# ifndef OPENSSL_NO_STATIC_ENGINE
# if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
{
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_padlock: "
- "int_engine_load_padlock()\n");
+ "engine_load_padlock_int()\n");
# endif
- int_engine_load_padlock();
+ engine_load_padlock_int();
}
# endif
# if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
{
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_capi: "
- "int_engine_load_capi()\n");
+ "engine_load_capi_int()\n");
# endif
- int_engine_load_capi();
+ engine_load_capi_int();
}
# endif
static CRYPTO_ONCE engine_dasync = CRYPTO_ONCE_STATIC_INIT;
{
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dasync: "
- "int_engine_load_dasync()\n");
+ "engine_load_dasync_int()\n");
# endif
- int_engine_load_dasync();
+ engine_load_dasync_int();
}
# if !defined(OPENSSL_NO_AFALGENG)
static CRYPTO_ONCE engine_afalg = CRYPTO_ONCE_STATIC_INIT;
{
# ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_afalg: "
- "int_engine_load_afalg()\n");
+ "engine_load_afalg_int()\n");
# endif
- int_engine_load_afalg();
+ engine_load_afalg_int();
}
# endif
# endif
if (zlib_inited) {
#ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_comp_zlib_cleanup()\n");
+ "comp_zlib_cleanup_int()\n");
#endif
- int_comp_zlib_cleanup();
+ comp_zlib_cleanup_int();
}
#endif
if (load_crypto_strings_inited) {
#ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_err_free_strings()\n");
+ "err_free_strings_int()\n");
#endif
- int_err_free_strings();
+ err_free_strings_int();
}
CRYPTO_THREAD_cleanup_local(&threadstopkey);
#ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_rand_cleanup()\n");
+ "rand_cleanup_int()\n");
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_conf_modules_free()\n");
+ "conf_modules_free_int()\n");
#ifndef OPENSSL_NO_ENGINE
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_engine_cleanup()\n");
+ "engine_cleanup_int()\n");
#endif
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_crypto_cleanup_all_ex_data()\n");
+ "crypto_cleanup_all_ex_data_int()\n");
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_bio_sock_cleanup()\n");
+ "bio_sock_cleanup_int()\n");
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_evp_cleanup()\n");
+ "evp_cleanup_int()\n");
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
- "int_obj_cleanup()\n");
+ "obj_cleanup_int()\n");
#endif
/*
* Note that cleanup order is important:
- * - rand_cleanup_intern could call an ENINGE's RAND cleanup function so
- * must be called before int_engine_cleanup()
+ * - rand_cleanup_int could call an ENINGE's RAND cleanup function so
+ * must be called before engine_cleanup_int()
* - ENGINEs use CRYPTO_EX_DATA and therefore, must be cleaned up
* before the ex data handlers are wiped in CRYPTO_cleanup_all_ex_data().
- * - int_conf_modules_free() can end up in ENGINE code so must be called
- * before int_engine_cleanup()
+ * - conf_modules_free_int() can end up in ENGINE code so must be called
+ * before engine_cleanup_int()
*/
- int_rand_cleanup();
- int_conf_modules_free();
+ rand_cleanup_int();
+ conf_modules_free_int();
#ifndef OPENSSL_NO_ENGINE
- int_engine_cleanup();
+ engine_cleanup_int();
#endif
- int_crypto_cleanup_all_ex_data();
+ crypto_cleanup_all_ex_data_int();
#ifndef OPENSSL_NO_SOCK
- int_bio_sock_cleanup();
+ bio_sock_cleanup_int();
#endif
- int_evp_cleanup();
- int_obj_cleanup();
+ evp_cleanup_int();
+ obj_cleanup_int();
base_inited = 0;
}
obj_cleanup_defer = 1;
}
-void int_obj_cleanup(void)
+void obj_cleanup_int(void)
{
if (obj_cleanup_defer) {
obj_cleanup_defer = 2;
}
#endif
-void int_rand_cleanup(void)
+void rand_cleanup_int(void)
{
const RAND_METHOD *meth = RAND_get_rand_method();
if (meth && meth->cleanup)
#define ALG_MAX_SALG_TYPE 14
# ifdef OPENSSL_NO_DYNAMIC_ENGINE
-void int_engine_load_afalg(void);
+void engine_load_afalg_int(void);
# endif
/* Local Linkage Functions */
return ret;
}
-void int_engine_load_afalg(void)
+void engine_load_afalg_int(void)
{
ENGINE *toadd;
static int cert_select_dialog(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
# endif
-void int_engine_load_capi(void);
+void engine_load_capi_int(void);
typedef PCCERT_CONTEXT(WINAPI *CERTDLG) (HCERTSTORE, HWND, LPCWSTR,
LPCWSTR, DWORD, DWORD, void *);
IMPLEMENT_DYNAMIC_CHECK_FN()
# else
-void int_engine_load_capi(void);
-void int_engine_load_capi(void)
+void engine_load_capi_int(void);
+void engine_load_capi_int(void)
{
}
# endif
static int dasync_destroy(ENGINE *e);
static int dasync_init(ENGINE *e);
static int dasync_finish(ENGINE *e);
-void int_engine_load_dasync(void);
+void engine_load_dasync_int(void);
/* Set up digests. Just SHA1 for now */
return ret;
}
-void int_engine_load_dasync(void)
+void engine_load_dasync_int(void)
{
ENGINE *toadd = engine_dasync();
if (!toadd)
# endif
# ifdef OPENSSL_NO_DYNAMIC_ENGINE
-void int_engine_load_padlock(void);
-void int_engine_load_padlock(void)
+void engine_load_padlock_int(void);
+void engine_load_padlock_int(void)
{
/* On non-x86 CPUs it just returns. */
# ifdef COMPILE_HW_PADLOCK
long (*callback_ctrl) (BIO *, int, bio_info_cb *);
};
-void int_bio_sock_cleanup(void);
+void bio_sock_cleanup_int(void);
#include <openssl/comp.h>
-void int_comp_zlib_cleanup(void);
+void comp_zlib_cleanup_int(void);
char *config_name;
};
-void int_openssl_config(const char *config_name);
-void int_openssl_no_config(void);
-void int_conf_modules_free(void);
+void openssl_config_int(const char *config_name);
+void openssl_no_config_int(void);
+void conf_modules_free_int(void);
#ifdef __cplusplus
}
#ifndef INTERNAL_ERR_H
# define INTERNAL_ERR_H
-void int_err_load_crypto_strings(void);
-void int_err_free_strings(void);
+void err_load_crypto_strings_int(void);
+void err_free_strings_int(void);
#endif
OPENSSL_free(cm);
}
-void int_ssl_comp_free_compression_methods(void)
+void ssl_comp_free_compression_methods_int(void)
{
STACK_OF(SSL_COMP) *old_meths = ssl_comp_methods;
ssl_comp_methods = NULL;
#ifndef OPENSSL_NO_COMP
#ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ssl_library_stop: "
- "int_ssl_comp_free_compression_methods()\n");
+ "ssl_comp_free_compression_methods_int()\n");
#endif
- int_ssl_comp_free_compression_methods();
+ ssl_comp_free_compression_methods_int();
#endif
}
if (ssl_strings_inited) {
#ifdef OPENSSL_INIT_DEBUG
fprintf(stderr, "OPENSSL_INIT: ssl_library_stop: "
- "int_err_free_strings()\n");
+ "err_free_strings_int()\n");
#endif
/*
* If both crypto and ssl error strings are inited we will end up
- * calling int_err_free_strings() twice - but that's ok. The second
+ * calling err_free_strings_int() twice - but that's ok. The second
* time will be a no-op. It's easier to do that than to try and track
* between the two libraries whether they have both been inited.
*/
- int_err_free_strings();
+ err_free_strings_int();
}
}
__owur int custom_exts_copy(custom_ext_methods *dst, const custom_ext_methods *src);
void custom_exts_free(custom_ext_methods *exts);
-void int_ssl_comp_free_compression_methods(void);
+void ssl_comp_free_compression_methods_int(void);
# else
DH_meth_set_generate_key 4067 1_1_0 EXIST::FUNCTION:DH
DH_meth_free 4068 1_1_0 EXIST::FUNCTION:DH
DH_meth_get_generate_key 4069 1_1_0 EXIST::FUNCTION:DH
-int_err_load_crypto_strings 4070 1_1_0 EXIST::FUNCTION:
-int_err_free_strings 4071 1_1_0 EXIST::FUNCTION:
+err_load_crypto_strings_int 4070 1_1_0 EXIST::FUNCTION:
+err_free_strings_int 4071 1_1_0 EXIST::FUNCTION: