Lines Matching refs:I

35 X509_REQ_get_attr_by_OBJ() finds the location of the first matching object I<obj>
36 in the I<req> attribute list. The search starts at the position after I<lastpos>.
38 X509_REQ_get_attr_by_OBJ() as the value of I<lastpos> in order to iterate through
39 the remaining attributes. I<lastpos> can be set to any negative value on the
43 it passes the numerical identifier (NID) I<nid> associated with the object.
46 X509_REQ_get_attr() returns the B<X509_ATTRIBUTE> object at index I<loc> in the
47 I<req> attribute list. I<loc> should be in the range from 0 to
50 X509_REQ_delete_attr() removes the B<X509_ATTRIBUTE> object at index I<loc> in
51 the I<req> objects list of attributes. An error occurs if I<req> is NULL.
53 X509_REQ_add1_attr() pushes a copy of the passed in B<X509_ATTRIBUTE> I<>attr>
54 to the I<req> object's attribute list. An error will occur if either the
59 I<obj> with type I<type> and data I<bytes> of length I<len> and then pushes it
60 to the I<req> object's attribute list. I<req> must be non NULL or an error
61 will occur. If I<obj> already exists in the attribute list then an error occurs.
64 that it passes the numerical identifier (NID) I<nid> associated with the object.
68 that it passes a name I<attrname> associated with the object.
75 X509_REQ_get_attr_count() returns the number of attributes in the I<req> object
78 X509_REQ_get_attr_by_OBJ() returns -1 if either the I<req> object's attribute
79 list is empty OR I<obj> is not found, otherwise it returns the location of the
80 I<obj> in the attribute list.
83 it returns -2 if the I<nid> is not known by OpenSSL.