Searched refs:appname (Results 1 – 8 of 8) sorted by relevance
/openssl/crypto/conf/ |
H A D | conf_sap.c | 32 void OPENSSL_config(const char *appname) in OPENSSL_config() argument 37 if (appname != NULL) in OPENSSL_config() 38 settings.appname = strdup(appname); in OPENSSL_config() 42 free(settings.appname); in OPENSSL_config() 51 const char *appname; in ossl_config_int() local 60 appname = settings ? settings->appname : NULL; in ossl_config_int() 66 filename, appname, flags); in ossl_config_int() 71 filename, appname, flags); in ossl_config_int()
|
H A D | conf_lib.c | 460 const char *appname) in OPENSSL_INIT_set_config_appname() argument 464 if (appname != NULL) { in OPENSSL_INIT_set_config_appname() 465 newappname = strdup(appname); in OPENSSL_INIT_set_config_appname() 470 free(settings->appname); in OPENSSL_INIT_set_config_appname() 471 settings->appname = newappname; in OPENSSL_INIT_set_config_appname() 483 free(settings->appname); in OPENSSL_INIT_free()
|
H A D | conf_mod.c | 128 int CONF_modules_load(const CONF *cnf, const char *appname, in CONF_modules_load() argument 146 if (appname) in CONF_modules_load() 147 vsection = NCONF_get_string(cnf, NULL, appname); in CONF_modules_load() 149 if (!appname || (!vsection && (flags & CONF_MFLAGS_DEFAULT_SECTION))) in CONF_modules_load() 192 const char *appname, unsigned long flags) in CONF_modules_load_file_ex() argument 225 ret = CONF_modules_load(conf, appname, flags); in CONF_modules_load_file_ex() 246 const char *appname, unsigned long flags) in CONF_modules_load_file() argument 248 return CONF_modules_load_file_ex(NULL, filename, appname, flags); in CONF_modules_load_file()
|
/openssl/doc/man3/ |
H A D | CONF_modules_load_file.pod | 15 const char *appname, unsigned long flags); 16 int CONF_modules_load_file(const char *filename, const char *appname, 18 int CONF_modules_load(const CONF *cnf, const char *appname, 31 library context B<libctx> file B<filename> and application name B<appname>. 34 If B<appname> is NULL the standard OpenSSL application name B<openssl_conf> is 71 B<CONF_MFLAGS_DEFAULT_SECTION> if set and B<appname> is not NULL will use the 72 default section pointed to by B<openssl_conf> if B<appname> does not exist. 140 } else if (CONF_modules_load(cnf, "appname", 0) <= 0) {
|
H A D | OPENSSL_config.pod | 15 void OPENSSL_config(const char *appname); 21 reads from the application section B<appname>. If B<appname> is NULL then
|
/openssl/include/internal/ |
H A D | conf.h | 23 char *appname; member
|
/openssl/include/openssl/ |
H A D | conf.h.in | 141 int CONF_modules_load(const CONF *cnf, const char *appname, 144 const char *appname, unsigned long flags); 145 int CONF_modules_load_file(const char *filename, const char *appname,
|
/openssl/ |
H A D | CHANGES.md | 13932 * Move default behaviour from OPENSSL_config(). If appname is NULL
|
Completed in 47 milliseconds