• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/crypto/openssl/crypto/x509v3/

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);
94 ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=",
297 * file section to an extension STACK.
300 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section,
308 if ((nval = NCONF_get_section(conf, section)) == NULL)
331 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
337 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
342 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
348 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
353 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
360 i = X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
370 char *X509V3_get_string(X509V3_CTX *ctx, const char *name, const char *section)
377 return ctx->db_meth->get_string(ctx->db, name, section);
381 STACK_OF(CONF_VALUE) *X509V3_get_section(X509V3_CTX *ctx, const char *section)
389 return ctx->db_meth->get_section(ctx->db, section);
401 void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section)
403 if (!section)
406 ctx->db_meth->free_section(ctx->db, section);
409 static char *nconf_get_string(void *db, const char *section, const char *value)
411 return NCONF_get_string(db, section, value);
414 static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, const char *section)
416 return NCONF_get_section(db, section);
462 static char *conf_lhash_get_string(void *db, const char *section, const char *value)
464 return CONF_get_string(db, section, value);
467 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section)
469 return CONF_get_section(db, section);
486 const char *section, X509 *cert)
490 return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert);
496 const char *section, X509_CRL *crl)
500 return X509V3_EXT_CRL_add_nconf(&ctmp, ctx, section, crl);
506 const char *section, X509_REQ *req)
510 return X509V3_EXT_REQ_add_nconf(&ctmp, ctx, section, req);