Lines Matching refs:cnf

97     CONF_VALUE *cnf;  variable
114 cnf = sk_CONF_VALUE_value(vals, i);
115 if (cnf->value != NULL || cnf->name == NULL) {
117 X509V3_conf_add_error_name_value(cnf);
120 pstr = cnf->name;
130 "%s", cnf->name);
138 if ((pobj = OBJ_txt2obj(cnf->name, 0)) == NULL) {
141 "%s", cnf->name);
170 CONF_VALUE *cnf; in policy_section() local
177 cnf = sk_CONF_VALUE_value(polstrs, i); in policy_section()
178 if (strcmp(cnf->name, "policyIdentifier") == 0) { in policy_section()
181 if ((pobj = OBJ_txt2obj(cnf->value, 0)) == NULL) { in policy_section()
183 X509V3_conf_err(cnf); in policy_section()
188 } else if (!ossl_v3_name_cmp(cnf->name, "CPS")) { in policy_section()
201 if (!ASN1_STRING_set(qual->d.cpsuri, cnf->value, in policy_section()
202 strlen(cnf->value))) in policy_section()
204 } else if (!ossl_v3_name_cmp(cnf->name, "userNotice")) { in policy_section()
206 if (*cnf->value != '@') { in policy_section()
208 X509V3_conf_err(cnf); in policy_section()
211 unot = X509V3_get_section(ctx, cnf->value + 1); in policy_section()
215 X509V3_conf_err(cnf); in policy_section()
228 X509V3_conf_err(cnf); in policy_section()
285 CONF_VALUE *cnf; in notice_section() local
300 cnf = sk_CONF_VALUE_value(unot, i); in notice_section()
302 value = cnf->value; in notice_section()
303 if (strcmp(cnf->name, "explicitText") == 0) { in notice_section()
312 } else if (strcmp(cnf->name, "organization") == 0) { in notice_section()
325 if (!ASN1_STRING_set(nref->organization, cnf->value, in notice_section()
326 strlen(cnf->value))) in notice_section()
328 } else if (strcmp(cnf->name, "noticeNumbers") == 0) { in notice_section()
338 nos = X509V3_parse_list(cnf->value); in notice_section()
341 X509V3_conf_add_error_name_value(cnf); in notice_section()
351 X509V3_conf_add_error_name_value(cnf); in notice_section()
374 CONF_VALUE *cnf; in nref_nos() local
380 cnf = sk_CONF_VALUE_value(nos, i); in nref_nos()
381 if ((aint = s2i_ASN1_INTEGER(NULL, cnf->name)) == NULL) { in nref_nos()