Lines Matching refs:section

27 static char *conf_lhash_get_string(void *db, const char *section, const char *value);
28 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section);
35 const char *section,
47 if (section != NULL)
49 "section=%s, name=%s, value=%s",
50 section, name, value);
103 "name=%s,section=%s", OBJ_nid2sn(ext_nid), value);
306 * file section to an extension STACK. Just check in case sk == NULL.
309 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section,
317 if ((nval = NCONF_get_section(conf, section)) == NULL)
321 if ((ext = X509V3_EXT_nconf_int(conf, ctx, val->section,
341 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
347 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
354 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
360 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
367 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
371 int ret = X509V3_EXT_add_nconf_sk(conf, ctx, section, &exts);
381 char *X509V3_get_string(X509V3_CTX *ctx, const char *name, const char *section)
388 return ctx->db_meth->get_string(ctx->db, name, section);
392 STACK_OF(CONF_VALUE) *X509V3_get_section(X509V3_CTX *ctx, const char *section)
399 return ctx->db_meth->get_section(ctx->db, section);
411 void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section)
413 if (!section)
416 ctx->db_meth->free_section(ctx->db, section);
419 static char *nconf_get_string(void *db, const char *section, const char *value)
421 return NCONF_get_string(db, section, value);
424 static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, const char *section)
426 return NCONF_get_section(db, section);
510 static char *conf_lhash_get_string(void *db, const char *section, const char *value)
512 return CONF_get_string(db, section, value);
515 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section)
517 return CONF_get_section(db, section);
538 const char *section, X509 *cert)
546 ret = X509V3_EXT_add_nconf(ctmp, ctx, section, cert);
555 const char *section, X509_CRL *crl)
563 ret = X509V3_EXT_CRL_add_nconf(ctmp, ctx, section, crl);
572 const char *section, X509_REQ *req)
580 ret = X509V3_EXT_REQ_add_nconf(ctmp, ctx, section, req);