Home
last modified time | relevance | path

Searched refs:db_meth (Results 1 – 2 of 2) sorted by relevance

/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_conf.c164 if (!ctx->db || !ctx->db_meth) { in do_ext_nconf()
418 if (!ctx->db || !ctx->db_meth || !ctx->db_meth->get_string) { in X509V3_get_string()
422 return ctx->db_meth->get_string(ctx->db, name, section); in X509V3_get_string()
428 if (!ctx->db || !ctx->db_meth || !ctx->db_meth->get_section) { in STACK_OF()
432 return ctx->db_meth->get_section(ctx->db, section); in STACK_OF()
440 if (ctx->db_meth->free_string) in X509V3_string_free()
441 ctx->db_meth->free_string(ctx->db, str); in X509V3_string_free()
449 if (ctx->db_meth->free_section) in X509V3_section_free()
450 ctx->db_meth->free_section(ctx->db, section); in X509V3_section_free()
475 ctx->db_meth = &nconf_method; in X509V3_set_nconf()
[all …]
/dragonfly/crypto/libressl/include/openssl/
H A Dx509v3.h138 X509V3_CONF_METHOD *db_meth; member