• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/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);
139 ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
291 * section to an extension STACK.
295 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section,
302 if (!(nval = NCONF_get_section(conf, section))) return 0;
316 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
322 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
327 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
333 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
338 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
345 i = X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
355 char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section)
358 return ctx->db_meth->get_string(ctx->db, name, section);
362 STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section)
365 return ctx->db_meth->get_section(ctx->db, section);
376 void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section)
378 if (!section) return;
380 ctx->db_meth->free_section(ctx->db, section);
383 static char *nconf_get_string(void *db, char *section, char *value)
385 return NCONF_get_string(db, section, value);
388 static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, char *section)
390 return NCONF_get_section(db, section);
436 static char *conf_lhash_get_string(void *db, char *section, char *value)
438 return CONF_get_string(db, section, value);
441 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section)
443 return CONF_get_section(db, section);
459 int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section,
464 return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert);
469 int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section,
474 return X509V3_EXT_CRL_add_nconf(&ctmp, ctx, section, crl);
479 int X509V3_EXT_REQ_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section,
484 return X509V3_EXT_REQ_add_nconf(&ctmp, ctx, section, req);