/external/openssl/apps/ |
req.c | 495 p=NCONF_get_string(req_conf,NULL,"oid_file"); 521 p=NCONF_get_string(req_conf,SECTION,"default_md"); 533 extensions = NCONF_get_string(req_conf, SECTION, V3_EXTENSIONS); 551 passin = NCONF_get_string(req_conf, SECTION, "input_password"); 558 passout = NCONF_get_string(req_conf, SECTION, "output_password"); 563 p = NCONF_get_string(req_conf, SECTION, STRING_MASK); 574 p = NCONF_get_string(req_conf, SECTION, UTF8_IN); 584 req_exts = NCONF_get_string(req_conf, SECTION, REQ_EXTENSIONS); 622 char *randfile = NCONF_get_string(req_conf,SECTION,"RANDFILE"); 631 char *randfile = NCONF_get_string(req_conf,SECTION,"RANDFILE") [all...] |
ca.c | 618 section=NCONF_get_string(conf,BASE_SECTION,ENV_DEFAULT_CA); 628 p=NCONF_get_string(conf,NULL,"oid_file"); 657 randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE"); 662 f = NCONF_get_string(conf, section, STRING_MASK); 672 f = NCONF_get_string(conf, section, UTF8_IN); 680 p = NCONF_get_string(conf, section, ENV_UNIQUE_SUBJECT); 713 if ((dbfile=NCONF_get_string(conf,section,ENV_DATABASE)) == NULL) 732 if ((keyfile == NULL) && ((keyfile=NCONF_get_string(conf, 761 && ((certfile=NCONF_get_string(conf, 780 f=NCONF_get_string(conf,BASE_SECTION,ENV_PRESERVE) [all...] |
spkac.c | 251 spkstr = NCONF_get_string(conf, spksect, spkac);
|
asn1pars.c | 401 genstr = NCONF_get_string(cnf, "default", "asn1");
|
x509.c | 536 extsect = NCONF_get_string(extconf, "default", "extensions"); [all...] |
apps.c | 721 if(!(p=NCONF_get_string(conf,NULL,"oid_section"))) [all...] |
/external/openssl/crypto/conf/ |
conf_lib.c | 163 return NCONF_get_string(NULL, group, name); 169 return NCONF_get_string(&ctmp, group, name); 320 char *NCONF_get_string(const CONF *conf,const char *group,const char *name) 351 str = NCONF_get_string(conf,group,name);
|
conf_mod.c | 137 vsection = NCONF_get_string(cnf, NULL, appname); 140 vsection = NCONF_get_string(cnf, NULL, "openssl_conf"); 255 path = NCONF_get_string(cnf, value, "path");
|
conf_err.c | 89 {ERR_FUNC(CONF_F_NCONF_GET_STRING), "NCONF_get_string"},
|
conf.h | 168 char *NCONF_get_string(const CONF *conf,const char *group,const char *name);
|
/external/openssl/crypto/x509v3/ |
v3_conf.c | 423 static char *nconf_get_string(void *db, char *section, char *value) function 425 return NCONF_get_string(db, section, value); 434 nconf_get_string,
|
/external/openssl/include/openssl/ |
conf.h | 168 char *NCONF_get_string(const CONF *conf,const char *group,const char *name);
|