HomeSort by relevance Sort by last modified time
    Searched refs:CONF (Results 1 - 25 of 44) sorted by null

1 2

  /external/openssl/crypto/conf/
conf_api.h 63 #include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section
    [all...]
conf.h 1 /* crypto/conf/conf.h */
91 CONF *(*create)(CONF_METHOD *meth);
92 int (*init)(CONF *conf);
93 int (*destroy)(CONF *conf);
94 int (*destroy_data)(CONF *conf);
95 int (*load_bio)(CONF *conf, BIO *bp, long *eline)
    [all...]
conf_lib.c 62 #include <openssl/conf.h>
66 const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT;
70 /* Init a 'CONF' structure from an old LHASH */
72 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
77 default_CONF_method->init(conf);
78 conf->data = hash;
81 /* The following section contains the "CONF classic" functions,
82 rewritten in terms of the new CONF interface. */
90 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file
    [all...]
conf_def.c 1 /* crypto/conf/conf.c */
59 /* Part of the code in here was originally in conf.c, which is now removed */
66 #include <openssl/conf.h>
72 static char *eat_ws(CONF *conf, char *p);
73 static char *eat_alpha_numeric(CONF *conf, char *p);
74 static void clear_comments(CONF *conf, char *p)
    [all...]
conf_api.c 59 /* Part of the code in here was originally in conf.c, which is now removed */
69 #include <openssl/conf.h>
74 LHASH_OF(CONF_VALUE) *conf);
81 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
85 if ((conf == NULL) || (section == NULL)) return(NULL);
88 v=lh_CONF_VALUE_retrieve(conf->data,&vv);
93 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
98 v=_CONF_get_section(conf,section)
    [all...]
conf_mod.c 63 #include <openssl/conf.h>
112 static int module_run(const CONF *cnf, char *name, char *value,
118 const CONF *cnf);
119 static CONF_MODULE *module_load_dso(const CONF *cnf, char *name, char *value,
122 /* Main function: load modules from a CONF structure */
124 int CONF_modules_load(const CONF *cnf, const char *appname,
170 CONF *conf = NULL; local
172 conf = NCONF_new(NULL);
173 if (!conf)
    [all...]
  /external/openssl/include/openssl/
conf_api.h 63 #include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section
    [all...]
conf.h 1 /* crypto/conf/conf.h */
91 CONF *(*create)(CONF_METHOD *meth);
92 int (*init)(CONF *conf);
93 int (*destroy)(CONF *conf);
94 int (*destroy_data)(CONF *conf);
95 int (*load_bio)(CONF *conf, BIO *bp, long *eline)
    [all...]
ts.h 732 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section);
733 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
735 int TS_CONF_set_crypto_device(CONF *conf, const char *section,
738 int TS_CONF_set_signer_cert(CONF *conf, const char *section,
740 int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs
    [all...]
x509v3.h 63 #include <openssl/conf.h>
605 X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
606 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
607 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
608 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert);
609 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req)
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
conf.h 80 * Config files are representated by a |CONF|. */
93 /* NCONF_new returns a fresh, empty |CONF|, or NULL on error. */
94 CONF *NCONF_new(void);
96 /* NCONF_free frees all the data owned by |conf| and then |conf| itself. */
97 void NCONF_free(CONF *conf);
100 * |conf|. It returns one on success and zero on error. In the event of an
103 int NCONF_load(CONF *conf, const char *filename, long *out_error_line)
    [all...]
x509v3.h 59 #include <openssl/conf.h>
603 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
604 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
605 OPENSSL_EXPORT int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
606 OPENSSL_EXPORT int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert);
607 OPENSSL_EXPORT int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req)
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/conf/
conf.c 57 #include <openssl/conf.h>
93 CONF *NCONF_new(void) {
94 CONF *conf; local
96 conf = OPENSSL_malloc(sizeof(CONF));
97 if (conf == NULL) {
101 conf->data = lh_CONF_VALUE_new(conf_value_hash, conf_value_cmp);
102 if (conf->data == NULL) {
103 OPENSSL_free(conf);
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
v3_conf.c 62 #include <openssl/conf.h>
72 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value);
77 /* CONF *conf: Config file */
80 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
89 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
98 /* CONF *conf: Config file *
    [all...]
  /external/openssl/crypto/x509v3/
v3_conf.c 65 #include <openssl/conf.h>
71 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value);
78 /* CONF *conf: Config file */
81 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
90 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
99 /* CONF *conf: Config file *
    [all...]
x509v3.h 63 #include <openssl/conf.h>
605 X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
606 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
607 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
608 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert);
609 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req)
    [all...]
  /external/openssl/apps/
apps.h 120 #include <openssl/conf.h>
145 CONF *config=NULL;
148 extern CONF *config;
155 extern CONF *config;
247 int add_oid_section(BIO *err, CONF *conf);
270 int load_config(BIO *err, CONF *cnf);
  /external/chromium_org/third_party/libxml/src/
check-xinclude-test-suite.py 13 CONF="testdescr.xml"
188 conf = libxml2.parseFile(CONF) variable
189 if conf == None:
190 print "Unable to load %s" % CONF
193 testsuite = conf.getRootElement()
217 conf.freeDoc()
check-relaxng-test-suite.py 19 CONF=os.path.join(os.path.dirname(__file__), "test/relaxng/OASIS/spectest.xml")
362 # Parse the conf file
365 testsuite = libxml2.parseFile(CONF)
369 print "%s doesn't start with a testSuite element, aborting" % (CONF)
check-relaxng-test-suite2.py 18 CONF=os.path.join(os.path.dirname(__file__), "test/relaxng/testsuite.xml")
375 # Parse the conf file
378 testsuite = libxml2.parseFile(CONF)
392 print "%s doesn't start with a testSuite element, aborting" % (CONF)
check-xml-test-suite.py 17 CONF="xml-test-suite/xmlconf/xmlconf.xml"
376 conf = loadNoentDoc(CONF) variable
377 if conf == None:
378 print "Unable to load %s" % CONF
381 testsuite = conf.getRootElement()
405 conf.freeDoc()
check-xsddata-test-suite.py 19 CONF=os.path.join(os.path.dirname(__file__), "test/xsdtest/xsdtestsuite.xml")
380 # Parse the conf file
383 testsuite = libxml2.parseFile(CONF)
397 print "%s doesn't start with a testSuite element, aborting" % (CONF)
  /external/openssl/crypto/evp/
evp_cnf.c 63 #include <openssl/conf.h>
74 static int alg_module_init(CONF_IMODULE *md, const CONF *cnf)
  /external/openssl/crypto/engine/
eng_cnf.c 60 #include <openssl/conf.h>
92 static int int_engine_configure(char *name, char *value, const CONF *cnf)
122 fprintf(stderr, "ENGINE conf: doing ctrl(%s,%s)\n", ctrlname, ctrlvalue);
216 static int int_engine_module_init(CONF_IMODULE *md, const CONF *cnf)
  /external/openssl/crypto/asn1/
asn_moid.c 63 #include <openssl/conf.h>
71 static int oid_module_init(CONF_IMODULE *md, const CONF *cnf)

Completed in 724 milliseconds

1 2