• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/

Lines Matching defs: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);
140 ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
320 * section to an extension STACK.
324 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section,
331 if (!(nval = NCONF_get_section(conf, section))) return 0;
345 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
351 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
356 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
362 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
367 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
374 i = X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
384 char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section)
392 return ctx->db_meth->get_string(ctx->db, name, section);
396 STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section)
404 return ctx->db_meth->get_section(ctx->db, section);
415 void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section)
417 if (!section) return;
419 ctx->db_meth->free_section(ctx->db, section);
422 static char *nconf_get_string(void *db, char *section, char *value)
424 return NCONF_get_string(db, section, value);
427 static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, char *section)
429 return NCONF_get_section(db, section);
475 static char *conf_lhash_get_string(void *db, char *section, char *value)
477 return CONF_get_string(db, section, value);
480 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section)
482 return CONF_get_section(db, section);
498 int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section,
503 return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert);
508 int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section,
513 return X509V3_EXT_CRL_add_nconf(&ctmp, ctx, section, crl);
518 int X509V3_EXT_REQ_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section,
523 return X509V3_EXT_REQ_add_nconf(&ctmp, ctx, section, req);