Home | History | Annotate | Download | only in apps

Lines Matching refs:cv

1696 	CONF_VALUE *cv;
1798 cv=sk_CONF_VALUE_value(policy,i); /* get the object id */
1799 if ((j=OBJ_txt2nid(cv->name)) == NID_undef)
1801 BIO_printf(bio_err,"%s:unknown object type in 'policy' configuration\n",cv->name);
1824 if (strcmp(cv->value,"optional") == 0)
1829 else if (strcmp(cv->value,"supplied") == 0)
1833 BIO_printf(bio_err,"The %s field needed to be supplied and was missing\n",cv->name);
1839 else if (strcmp(cv->value,"match") == 0)
1845 BIO_printf(bio_err,"The mandatory %s field was missing\n",cv->name);
1855 BIO_printf(bio_err,"The %s field does not exist in the CA certificate,\nthe 'policy' is misconfigured\n",cv->name);
1869 BIO_printf(bio_err,"The %s field needed to be the same in the\nCA certificate (%s) and the request (%s)\n",cv->name,((str2 == NULL)?"NULL":(char *)str2->data),((str == NULL)?"NULL":(char *)str->data));
1875 BIO_printf(bio_err,"%s:invalid type in 'policy' configuration\n",cv->value);
2251 CONF_VALUE *cv=NULL;
2307 cv=sk_CONF_VALUE_value(sk,i);
2308 type=cv->name;
2312 for (buf = cv->name; *buf ; buf++)
2320 buf=cv->value;
2325 spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);