HomeSort by relevance Sort by last modified time
    Searched refs:cnf (Results 1 - 24 of 24) sorted by null

  /external/openssl/crypto/x509v3/
v3_cpols.c 139 CONF_VALUE *cnf;
153 cnf = sk_CONF_VALUE_value(vals, i);
154 if(cnf->value || !cnf->name ) {
156 X509V3_conf_err(cnf);
159 pstr = cnf->name;
169 X509V3_conf_err(cnf);
176 if(!(pobj = OBJ_txt2obj(cnf->name, 0))) {
178 X509V3_conf_err(cnf);
202 CONF_VALUE *cnf;
    [all...]
v3_crld.c 116 CONF_VALUE *cnf)
120 if (!strncmp(cnf->name, "fullname", 9))
122 fnm = gnames_from_sectname(ctx, cnf->value);
126 else if (!strcmp(cnf->name, "relativename"))
134 dnsect = X509V3_get_section(ctx, cnf->value);
274 CONF_VALUE *cnf; local
282 cnf = sk_CONF_VALUE_value(nval, i);
283 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
288 if (!strcmp(cnf->name, "reasons"))
290 if (!set_reasons(&point->reasons, cnf->value)
317 CONF_VALUE *cnf; local
450 CONF_VALUE *cnf; local
    [all...]
v3_akey.c 116 CONF_VALUE *cnf; local
128 cnf = sk_CONF_VALUE_value(values, i);
129 if(!strcmp(cnf->name, "keyid"))
132 if(cnf->value && !strcmp(cnf->value, "always"))
135 else if(!strcmp(cnf->name, "issuer"))
138 if(cnf->value && !strcmp(cnf->value, "always"))
144 ERR_add_error_data(2, "name=", cnf->name);
v3_pci.c 256 CONF_VALUE *cnf = sk_CONF_VALUE_value(vals, i); local
257 if (!cnf->name || (*cnf->name != '@' && !cnf->value))
260 X509V3_conf_err(cnf);
263 if (*cnf->name == '@')
268 sect = X509V3_get_section(ctx, cnf->name + 1);
272 X509V3_conf_err(cnf);
287 if (!process_pci_value(cnf,
290 X509V3_conf_err(cnf);
    [all...]
v3_info.c 139 CONF_VALUE *cnf, ctmp;
148 cnf = sk_CONF_VALUE_value(nval, i);
154 ptmp = strchr(cnf->name, ';');
159 objlen = ptmp - cnf->name;
161 ctmp.value = cnf->value;
168 strncpy(objtmp, cnf->name, objlen);
v3_alt.c 247 CONF_VALUE *cnf; local
254 cnf = sk_CONF_VALUE_value(nval, i);
255 if(!name_cmp(cnf->name, "issuer") && cnf->value &&
256 !strcmp(cnf->value, "copy")) {
260 if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf)))
312 CONF_VALUE *cnf; local
319 cnf = sk_CONF_VALUE_value(nval, i);
320 if(!name_cmp(cnf->name, "email") && cnf->value &
401 CONF_VALUE *cnf; local
    [all...]
v3_sxnet.c 134 CONF_VALUE *cnf;
138 cnf = sk_CONF_VALUE_value(nval, i);
139 if(!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1))
x509v3.h 599 CONF_VALUE *cnf);
602 X509V3_CTX *ctx, CONF_VALUE *cnf, int is_nc);
  /external/openssl/crypto/engine/
eng_cnf.c 92 static int int_engine_configure(char *name, char *value, const CONF *cnf)
108 ecmds = NCONF_get_section(cnf, value);
169 if (!NCONF_get_number_e(cnf, value, "init", &do_init))
216 static int int_engine_module_init(CONF_IMODULE *md, const CONF *cnf)
226 elist = NCONF_get_section(cnf, CONF_imodule_get_value(md));
237 if (!int_engine_configure(cval->name, cval->value, cnf))
  /external/openssl/crypto/conf/
conf_mod.c 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,
124 int CONF_modules_load(const CONF *cnf, const char *appname,
133 if (!cnf)
137 vsection = NCONF_get_string(cnf, NULL, appname);
140 vsection = NCONF_get_string(cnf, NULL, "openssl_conf");
148 values = NCONF_get_section(cnf, vsection);
156 ret = module_run(cnf, vl->name, vl->value, flags);
206 static int module_run(const CONF *cnf, char *name, char *value
    [all...]
conf.h 111 typedef int conf_init_func(CONF_IMODULE *md, const CONF *cnf);
183 int CONF_modules_load(const CONF *cnf, const char *appname,
  /external/openssl/crypto/asn1/
asn_moid.c 71 static int oid_module_init(CONF_IMODULE *md, const CONF *cnf)
78 if(!(sktmp = NCONF_get_section(cnf, oid_section)))
asn1_gen.c 120 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf);
126 X509V3_CTX cnf; local
131 X509V3_set_nconf(&cnf, nconf);
132 return ASN1_generate_v3(str, &cnf);
135 ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf)
161 if (!cnf)
166 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf);
448 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf)
461 if (!cnf)
463 sect = X509V3_get_section(cnf, (char *)section)
    [all...]
asn1.h     [all...]
  /external/openssl/apps/
asn1pars.c 389 CONF *cnf = NULL; local
397 cnf = NCONF_new(NULL);
398 if (!NCONF_load(cnf, genconf, &errline))
401 genstr = NCONF_get_string(cnf, "default", "asn1");
409 atyp = ASN1_generate_nconf(genstr, cnf);
410 NCONF_free(cnf);
439 NCONF_free(cnf);
apps.c 718 CONF_VALUE *cnf; local
730 cnf = sk_CONF_VALUE_value(sktmp, i);
731 if(OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
733 cnf->name, cnf->value);
    [all...]
apps.h 268 int load_config(BIO *err, CONF *cnf);
  /external/openssl/
import_openssl.sh 155 cat test/Uss.cnf | sed 's#./.rnd#/sdcard/android.testssl/.rnd#' >> android.testssl/Uss.cnf
156 cat test/CAss.cnf | sed 's#./.rnd#/sdcard/android.testssl/.rnd#' >> android.testssl/CAss.cnf
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 237 EGLConfig cnf = getConfig(_env, config); local
240 EGLContext ctx = eglCreateContext(dpy, cnf, shr, base);
253 EGLConfig cnf = getConfig(_env, config); local
255 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base);
281 EGLConfig cnf = getConfig(_env, config); local
305 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
325 EGLContext cnf = getConfig(_env, config); local
339 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
352 EGLContext cnf = getConfig(_env, config); local
355 success = eglGetConfigAttrib(dpy, cnf, attribute, &localValue)
    [all...]
  /external/openssl/include/openssl/
conf.h 111 typedef int conf_init_func(CONF_IMODULE *md, const CONF *cnf);
183 int CONF_modules_load(const CONF *cnf, const char *appname,
x509v3.h 599 CONF_VALUE *cnf);
602 X509V3_CTX *ctx, CONF_VALUE *cnf, int is_nc);
asn1.h     [all...]
  /libcore/luni/src/main/java/java/io/
ObjectInputStream.java     [all...]
  /external/grub/docs/
texinfo.tex     [all...]

Completed in 385 milliseconds