Lines Matching defs:conf
189 CONF *conf = NULL;
202 conf = app_load_config_bio(mem_bio, NULL);
203 if (conf == NULL)
206 if (CONF_modules_load(conf, NULL, 0) <= 0)
209 return conf;
211 NCONF_free(conf);
216 static void free_config_and_unload(CONF *conf)
218 if (conf != NULL) {
219 NCONF_free(conf);
241 CONF *conf = NULL;
244 conf = app_load_config(infile);
245 if (conf == NULL)
248 s = NCONF_get_string(conf, section, OSSL_PROV_FIPS_PARAM_INSTALL_VERSION);
253 s = NCONF_get_string(conf, section, OSSL_PROV_FIPS_PARAM_MODULE_MAC);
266 s = NCONF_get_string(conf, section, OSSL_PROV_FIPS_PARAM_INSTALL_STATUS);
271 s = NCONF_get_string(conf, section, OSSL_PROV_FIPS_PARAM_INSTALL_MAC);
288 NCONF_free(conf);
312 CONF *conf = NULL;
494 conf = generate_config_and_load(prov_name, section_name, module_mac,
498 if (conf == NULL)
538 free_config_and_unload(conf);