• Home
  • Raw
  • Download

Lines Matching refs:section

73 static char *conf_lhash_get_string(void *db, char *section, char *value);
74 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section);
325 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, in X509V3_EXT_add_nconf_sk() argument
332 if (!(nval = NCONF_get_section(conf, section))) return 0; in X509V3_EXT_add_nconf_sk()
346 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, in X509V3_EXT_add_nconf() argument
352 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); in X509V3_EXT_add_nconf()
357 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, in X509V3_EXT_CRL_add_nconf() argument
363 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); in X509V3_EXT_CRL_add_nconf()
368 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, in X509V3_EXT_REQ_add_nconf() argument
375 i = X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); in X509V3_EXT_REQ_add_nconf()
385 char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section) in X509V3_get_string() argument
393 return ctx->db_meth->get_string(ctx->db, name, section); in X509V3_get_string()
397 STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section) in STACK_OF()
405 return ctx->db_meth->get_section(ctx->db, section); in STACK_OF()
416 void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) in X509V3_section_free() argument
418 if (!section) return; in X509V3_section_free()
420 ctx->db_meth->free_section(ctx->db, section); in X509V3_section_free()
423 static char *nconf_get_string(void *db, char *section, char *value) in nconf_get_string() argument
425 return NCONF_get_string(db, section, value); in nconf_get_string()
428 static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, char *section) in STACK_OF()
430 return NCONF_get_section(db, section); in STACK_OF()
476 static char *conf_lhash_get_string(void *db, char *section, char *value) in conf_lhash_get_string() argument
478 return CONF_get_string(db, section, value); in conf_lhash_get_string()
481 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section) in STACK_OF()
483 return CONF_get_section(db, section); in STACK_OF()
500 char *section, X509 *cert) in X509V3_EXT_add_conf() argument
504 return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert); in X509V3_EXT_add_conf()
510 char *section, X509_CRL *crl) in X509V3_EXT_CRL_add_conf() argument
514 return X509V3_EXT_CRL_add_nconf(&ctmp, ctx, section, crl); in X509V3_EXT_CRL_add_conf()
520 char *section, X509_REQ *req) in X509V3_EXT_REQ_add_conf() argument
524 return X509V3_EXT_REQ_add_nconf(&ctmp, ctx, section, req); in X509V3_EXT_REQ_add_conf()