Searched refs:appname (Results 1 – 8 of 8) sorted by relevance
/openssl-master/crypto/conf/ |
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() 48 const char *appname; in ossl_config_int() local 55 appname = settings ? settings->appname : NULL; in ossl_config_int() 60 filename, appname, flags); in ossl_config_int() 64 ret = CONF_modules_load_file(filename, appname, flags); in ossl_config_int()
|
A D | conf_mod.c | 90 int CONF_modules_load(const CONF *cnf, const char *appname, in CONF_modules_load() argument 108 if (appname) in CONF_modules_load() 109 vsection = NCONF_get_string(cnf, NULL, appname); in CONF_modules_load() 111 if (!appname || (!vsection && (flags & CONF_MFLAGS_DEFAULT_SECTION))) in CONF_modules_load() 154 const char *appname, unsigned long flags) in CONF_modules_load_file_ex() argument 181 ret = CONF_modules_load(conf, appname, flags); in CONF_modules_load_file_ex() 201 const char *appname, unsigned long flags) in CONF_modules_load_file() argument 203 return CONF_modules_load_file_ex(NULL, filename, appname, flags); in CONF_modules_load_file()
|
A D | conf_lib.c | 448 const char *appname) in OPENSSL_INIT_set_config_appname() argument 452 if (appname != NULL) { in OPENSSL_INIT_set_config_appname() 453 newappname = strdup(appname); in OPENSSL_INIT_set_config_appname() 458 free(settings->appname); in OPENSSL_INIT_set_config_appname() 459 settings->appname = newappname; in OPENSSL_INIT_set_config_appname() 468 free(settings->appname); in OPENSSL_INIT_free()
|
/openssl-master/doc/man3/ |
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) {
|
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-master/include/internal/ |
A D | conf.h | 23 char *appname; member
|
/openssl-master/include/openssl/ |
A D | conf.h.in | 138 int CONF_modules_load(const CONF *cnf, const char *appname, 141 const char *appname, unsigned long flags); 142 int CONF_modules_load_file(const char *filename, const char *appname,
|
/openssl-master/ |
A D | CHANGES.md | 11987 * Move default behaviour from OPENSSL_config(). If appname is NULL
|
Completed in 30 milliseconds