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, in X509V3_EXT_nconf_int() argument
47 if (section != NULL) in X509V3_EXT_nconf_int()
50 section, name, value); in X509V3_EXT_nconf_int()
313 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section, in X509V3_EXT_add_nconf_sk() argument
321 if ((nval = NCONF_get_section(conf, section)) == NULL) in X509V3_EXT_add_nconf_sk()
339 if ((ext = X509V3_EXT_nconf_int(conf, ctx, val->section, in X509V3_EXT_add_nconf_sk()
359 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, in X509V3_EXT_add_nconf() argument
365 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); in X509V3_EXT_add_nconf()
372 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, in X509V3_EXT_CRL_add_nconf() argument
378 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); in X509V3_EXT_CRL_add_nconf()
385 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, in X509V3_EXT_REQ_add_nconf() argument
389 int ret = X509V3_EXT_add_nconf_sk(conf, ctx, section, &exts); in X509V3_EXT_REQ_add_nconf()
399 char *X509V3_get_string(X509V3_CTX *ctx, const char *name, const char *section) in X509V3_get_string() argument
406 return ctx->db_meth->get_string(ctx->db, name, section); in X509V3_get_string()
410 STACK_OF(CONF_VALUE) *X509V3_get_section(X509V3_CTX *ctx, const char *section) in STACK_OF()
417 return ctx->db_meth->get_section(ctx->db, section); in STACK_OF()
429 void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) in X509V3_section_free() argument
431 if (!section) in X509V3_section_free()
434 ctx->db_meth->free_section(ctx->db, section); in X509V3_section_free()
437 static char *nconf_get_string(void *db, const char *section, const char *value) in nconf_get_string() argument
439 return NCONF_get_string(db, section, value); in nconf_get_string()
442 static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, const char *section) in STACK_OF()
444 return NCONF_get_section(db, section); in STACK_OF()
528 static char *conf_lhash_get_string(void *db, const char *section, const char *value) in conf_lhash_get_string() argument
530 return CONF_get_string(db, section, value); in conf_lhash_get_string()
533 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section) in STACK_OF()
535 return CONF_get_section(db, section); in STACK_OF()
556 const char *section, X509 *cert) in X509V3_EXT_add_conf() argument
564 ret = X509V3_EXT_add_nconf(ctmp, ctx, section, cert); in X509V3_EXT_add_conf()
573 const char *section, X509_CRL *crl) in X509V3_EXT_CRL_add_conf() argument
581 ret = X509V3_EXT_CRL_add_nconf(ctmp, ctx, section, crl); in X509V3_EXT_CRL_add_conf()
590 const char *section, X509_REQ *req) in X509V3_EXT_REQ_add_conf() argument
598 ret = X509V3_EXT_REQ_add_nconf(ctmp, ctx, section, req); in X509V3_EXT_REQ_add_conf()