HomeSort by relevance Sort by last modified time
    Searched refs:CONF (Results 1 - 25 of 30) 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...]
ossl_typ.h 161 typedef struct conf_st CONF;
  /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;
245 int add_oid_section(BIO *err, CONF *conf);
268 int load_config(BIO *err, CONF *cnf);
x509.c 158 CONF *conf, char *section);
163 CONF *conf, char *section, ASN1_INTEGER *sno);
205 CONF *extconf = NULL;
1151 int days, int clrext, CONF *conf, char *section,
1202 if (conf)
1207 X509V3_set_nconf(&ctx2, conf);
1208 if (!X509V3_EXT_add_nconf(conf, &ctx2, section, x)) goto end
    [all...]
spkac.c 66 #include <openssl/conf.h>
93 CONF *conf = NULL; local
242 conf = NCONF_new(NULL);
243 i = NCONF_load_bio(conf, in, NULL);
251 spkstr = NCONF_get_string(conf, spksect, spkac);
300 NCONF_free(conf);
ca.c 66 #include <openssl/conf.h>
203 char *enddate, long days, int batch, char *ext_sect, CONF *conf,
211 char *ext_sect, CONF *conf,int verbose, unsigned long certopt,
219 CONF *conf, int verbose, unsigned long certopt,
226 int verbose, X509_REQ *req, char *ext_sect, CONF *conf,
236 static CONF *conf=NULL variable
    [all...]
asn1pars.c 389 CONF *cnf = NULL;
openssl.c 121 #include <openssl/conf.h>
150 CONF *config=NULL;
srp.c 64 #include <openssl/conf.h>
111 static CONF *conf=NULL; variable
311 conf = NULL;
461 conf = NCONF_new(NULL);
462 if (NCONF_load(conf,configfile,&errorline) <= 0)
478 if (!load_config(bio_err, conf))
486 section=NCONF_get_string(conf,BASE_SECTION,ENV_DEFAULT_SRP);
494 if (randfile == NULL && conf)
495 randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE")
    [all...]
  /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)
  /external/openssl/crypto/rc4/asm/
rc4-parisc.pl 50 if (open CONF,"<${dir}../../opensslconf.h") {
51 while(<CONF>) {
57 close CONF;
  /external/openssl/crypto/
ossl_typ.h 161 typedef struct conf_st CONF;
  /external/openssl/crypto/bn/asm/
parisc-mont.pl 91 if (open CONF,"<${dir}../../opensslconf.h") {
92 while(<CONF>) {
99 close CONF;

Completed in 629 milliseconds

1 2