HomeSort by relevance Sort by last modified time
    Searched refs:CONF (Results 1 - 25 of 28) 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 */
68 #include <openssl/conf.h>
73 LHASH_OF(CONF_VALUE) *conf);
80 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
84 if ((conf == NULL) || (section == NULL)) return(NULL);
87 v=lh_CONF_VALUE_retrieve(conf->data,&vv);
92 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
97 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 735 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section);
736 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
738 int TS_CONF_set_crypto_device(CONF *conf, const char *section,
741 int TS_CONF_set_signer_cert(CONF *conf, const char *section,
743 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 159 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);
161 int create,int days, int clrext, CONF *conf, char *section,
203 CONF *extconf = NULL;
1137 int days, int clrext, CONF *conf, char *section, ASN1_INTEGER *sno)
1187 if (conf)
1192 X509V3_set_nconf(&ctx2, conf);
1193 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>
202 char *enddate, long days, int batch, char *ext_sect, CONF *conf,
209 char *ext_sect, CONF *conf,int verbose, unsigned long certopt,
216 CONF *conf, int verbose, unsigned long certopt,
222 int verbose, X509_REQ *req, char *ext_sect, CONF *conf,
232 static CONF *conf=NULL variable
    [all...]
asn1pars.c 389 CONF *cnf = NULL;
openssl.c 121 #include <openssl/conf.h>
147 CONF *config=NULL;
apps.c 714 int add_oid_section(BIO *err, CONF *conf)
720 if(!(p=NCONF_get_string(conf,NULL,"oid_section")))
725 if(!(sktmp = NCONF_get_section(conf, p))) {
    [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)
asn1_gen.c 124 ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf)
  /external/openssl/crypto/
ossl_typ.h 159 typedef struct conf_st CONF;
install.com 50 EVP,ASN1,PEM,X509,X509V3,CONF,TXT_DB,PKCS7,PKCS12,COMP,OCSP,-
95 $ EXHEADER_CONF := conf.h,conf_api.h

Completed in 2467 milliseconds

1 2