1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | X509_ATTRIBUTE, X509at_get_attr,
|
---|
6 | X509at_get_attr_count, X509at_get_attr_by_NID, X509at_get_attr_by_OBJ,
|
---|
7 | X509at_delete_attr,
|
---|
8 | X509at_add1_attr,
|
---|
9 | X509at_add1_attr_by_OBJ, X509at_add1_attr_by_NID, X509at_add1_attr_by_txt,
|
---|
10 | X509at_get0_data_by_OBJ,
|
---|
11 | X509_ATTRIBUTE_create, X509_ATTRIBUTE_create_by_NID,
|
---|
12 | X509_ATTRIBUTE_create_by_OBJ, X509_ATTRIBUTE_create_by_txt,
|
---|
13 | X509_ATTRIBUTE_set1_object, X509_ATTRIBUTE_set1_data,
|
---|
14 | X509_ATTRIBUTE_count,
|
---|
15 | X509_ATTRIBUTE_get0_data, X509_ATTRIBUTE_get0_object, X509_ATTRIBUTE_get0_type
|
---|
16 | - X509 attribute functions
|
---|
17 |
|
---|
18 | =head1 SYNOPSIS
|
---|
19 |
|
---|
20 | #include <openssl/x509.h>
|
---|
21 |
|
---|
22 | typedef struct x509_attributes_st X509_ATTRIBUTE;
|
---|
23 |
|
---|
24 | int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x);
|
---|
25 | int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid,
|
---|
26 | int lastpos);
|
---|
27 | int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk,
|
---|
28 | const ASN1_OBJECT *obj, int lastpos);
|
---|
29 | X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc);
|
---|
30 | X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc);
|
---|
31 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x,
|
---|
32 | X509_ATTRIBUTE *attr);
|
---|
33 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE)
|
---|
34 | **x, const ASN1_OBJECT *obj,
|
---|
35 | int type,
|
---|
36 | const unsigned char *bytes,
|
---|
37 | int len);
|
---|
38 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE)
|
---|
39 | **x, int nid, int type,
|
---|
40 | const unsigned char *bytes,
|
---|
41 | int len);
|
---|
42 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE)
|
---|
43 | **x, const char *attrname,
|
---|
44 | int type,
|
---|
45 | const unsigned char *bytes,
|
---|
46 | int len);
|
---|
47 | void *X509at_get0_data_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *x,
|
---|
48 | const ASN1_OBJECT *obj, int lastpos, int type);
|
---|
49 | X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value);
|
---|
50 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid,
|
---|
51 | int atrtype, const void *data,
|
---|
52 | int len);
|
---|
53 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr,
|
---|
54 | const ASN1_OBJECT *obj,
|
---|
55 | int atrtype, const void *data,
|
---|
56 | int len);
|
---|
57 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr,
|
---|
58 | const char *atrname, int type,
|
---|
59 | const unsigned char *bytes,
|
---|
60 | int len);
|
---|
61 | int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj);
|
---|
62 | int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
|
---|
63 | const void *data, int len);
|
---|
64 | void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, int atrtype,
|
---|
65 | void *data);
|
---|
66 | int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr);
|
---|
67 | ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
|
---|
68 | ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx);
|
---|
69 |
|
---|
70 | =head1 DESCRIPTION
|
---|
71 |
|
---|
72 | B<X509_ATTRIBUTE> objects are used by many standards including X509, X509_REQ,
|
---|
73 | PKCS12, PKCS8, PKCS7 and CMS.
|
---|
74 |
|
---|
75 | The B<X509_ATTRIBUTE> object is used to represent the ASN.1 Attribute as defined
|
---|
76 | in RFC 5280, i.e.
|
---|
77 |
|
---|
78 | Attribute ::= SEQUENCE {
|
---|
79 | type AttributeType,
|
---|
80 | values SET OF AttributeValue }
|
---|
81 |
|
---|
82 | AttributeType ::= OBJECT IDENTIFIER
|
---|
83 | AttributeValue ::= ANY -- DEFINED BY AttributeType
|
---|
84 |
|
---|
85 | For example CMS defines the signing-time attribute as:
|
---|
86 |
|
---|
87 | id-signingTime OBJECT IDENTIFIER ::= { iso(1) member-body(2)
|
---|
88 | us(840) rsadsi(113549) pkcs(1) pkcs9(9) 5 }
|
---|
89 |
|
---|
90 | SigningTime ::= Time
|
---|
91 |
|
---|
92 | Time ::= CHOICE {
|
---|
93 | utcTime UTCTime,
|
---|
94 | generalizedTime GeneralizedTime }
|
---|
95 |
|
---|
96 | In OpenSSL B<AttributeType> maps to an B<ASN1_OBJECT> object
|
---|
97 | and B<AttributeValue> maps to a list of B<ASN1_TYPE> objects.
|
---|
98 |
|
---|
99 | The following functions are used for B<X509_ATTRIBUTE> objects.
|
---|
100 |
|
---|
101 | X509at_get_attr_by_OBJ() finds the location of the first matching object I<obj>
|
---|
102 | in a list of attributes I<sk>. The search starts at the position after I<lastpos>.
|
---|
103 | If the returned value is positive then it can be used on the next call to
|
---|
104 | X509at_get_attr_by_OBJ() as the value of I<lastpos> in order to iterate through
|
---|
105 | the remaining attributes. I<lastpos> can be set to any negative value on the
|
---|
106 | first call, in order to start searching from the start of the list.
|
---|
107 |
|
---|
108 | X509at_get_attr_by_NID() is similar to X509at_get_attr_by_OBJ() except that it
|
---|
109 | passes the numerical identifier (NID) I<nid> associated with the object.
|
---|
110 | See <openssl/obj_mac.h> for a list of NID_*.
|
---|
111 |
|
---|
112 | X509at_get_attr() returns the B<X509_ATTRIBUTE> object at index I<loc> in the
|
---|
113 | list of attributes I<x>. I<loc> should be in the range from 0 to
|
---|
114 | X509at_get_attr_count() - 1.
|
---|
115 |
|
---|
116 | X509at_delete_attr() removes the B<X509_ATTRIBUTE> object at index I<loc> in
|
---|
117 | the list of attributes I<x>.
|
---|
118 |
|
---|
119 | X509at_add1_attr() pushes a copy of the passed in B<X509_ATTRIBUTE> object
|
---|
120 | to the list I<x>.
|
---|
121 | Both I<x> and I<attr> must be non NULL or an error will occur.
|
---|
122 | If I<*x> is NULL then a new list is created, otherwise it uses the
|
---|
123 | passed in list. An error will occur if an existing attribute (with the same
|
---|
124 | attribute type) already exists in the attribute list.
|
---|
125 |
|
---|
126 | X509at_add1_attr_by_OBJ() creates a new B<X509_ATTRIBUTE> using
|
---|
127 | X509_ATTRIBUTE_set1_object() and X509_ATTRIBUTE_set1_data() to assign a new
|
---|
128 | I<obj> with type I<type> and data I<bytes> of length I<len> and then pushes it
|
---|
129 | to the attribute list I<x>. Both I<x> and I<attr> must be non NULL or an error
|
---|
130 | will occur. If I<*x> is NULL then a new attribute list is created. If I<obj>
|
---|
131 | already exists in the attribute list then an error occurs.
|
---|
132 |
|
---|
133 | X509at_add1_attr_by_NID() is similar to X509at_add1_attr_by_OBJ() except that it
|
---|
134 | passes the numerical identifier (NID) I<nid> associated with the object.
|
---|
135 | See <openssl/obj_mac.h> for a list of NID_*.
|
---|
136 |
|
---|
137 | X509at_add1_attr_by_txt() is similar to X509at_add1_attr_by_OBJ() except that it
|
---|
138 | passes a name I<attrname> associated with the object.
|
---|
139 | See <openssl/obj_mac.h> for a list of SN_* names.
|
---|
140 |
|
---|
141 | X509_ATTRIBUTE_set1_object() assigns a B<ASN1_OBJECT> I<obj>
|
---|
142 | to the attribute I<attr>. If I<attr> contained an existing B<ASN1_OBJECT> then
|
---|
143 | it is freed. An error occurs if either I<attr> or I<obj> are NULL, or if
|
---|
144 | the passed in I<obj> cannot be duplicated.
|
---|
145 |
|
---|
146 | X509_ATTRIBUTE_set1_data() pushes a new B<ASN1_TYPE> object onto the I<attr>
|
---|
147 | attributes list. The new object is assigned a copy of the data in I<data> of
|
---|
148 | size I<len>.
|
---|
149 | If I<attrtype> has flag I<MBSTRING_FLAG> set then a table lookup using the
|
---|
150 | I<attr> attributes NID is used to set an B<ASN1_STRING> using
|
---|
151 | ASN1_STRING_set_by_NID(), and the passed in I<data> must be in the format
|
---|
152 | required for that object type or an error will occur.
|
---|
153 | If I<len> is not -1 then internally ASN1_STRING_type_new() is
|
---|
154 | used with the passed in I<attrtype>.
|
---|
155 | If I<attrtype> is 0 the call does nothing except return 1.
|
---|
156 |
|
---|
157 | X509_ATTRIBUTE_create() creates a new B<X509_ATTRIBUTE> using the I<nid>
|
---|
158 | to set the B<ASN1_OBJECT> OID and the I<atrtype> and I<value> to set the
|
---|
159 | B<ASN1_TYPE>.
|
---|
160 |
|
---|
161 | X509_ATTRIBUTE_create_by_OBJ() uses X509_ATTRIBUTE_set1_object() and
|
---|
162 | X509_ATTRIBUTE_set1_data() to assign a new I<obj> with type I<atrtype> and
|
---|
163 | data I<data> of length I<len>. If the passed in attribute I<attr> OR I<*attr> is
|
---|
164 | NULL then a new B<X509_ATTRIBUTE> will be returned, otherwise the passed in
|
---|
165 | B<X509_ATTRIBUTE> is used. Note that the ASN1_OBJECT I<obj> is pushed onto the
|
---|
166 | attributes existing list of objects, which could be an issue if the attributes
|
---|
167 | <ASN1_OBJECT> was different.
|
---|
168 |
|
---|
169 | X509_ATTRIBUTE_create_by_NID() is similar to X509_ATTRIBUTE_create_by_OBJ()
|
---|
170 | except that it passes the numerical identifier (NID) I<nid> associated with the
|
---|
171 | object. See <openssl/obj_mac.h> for a list of NID_*.
|
---|
172 |
|
---|
173 | X509_ATTRIBUTE_create_by_txt() is similar to X509_ATTRIBUTE_create_by_OBJ()
|
---|
174 | except that it passes a name I<atrname> associated with the
|
---|
175 | object. See <openssl/obj_mac.h> for a list of SN_* names.
|
---|
176 |
|
---|
177 | X509_ATTRIBUTE_count() returns the number of B<ASN1_TYPE> objects in an
|
---|
178 | attribute I<attr>.
|
---|
179 |
|
---|
180 | X509_ATTRIBUTE_get0_type() returns the B<ASN1_TYPE> object at index I<idx> in
|
---|
181 | the attribute list I<attr>. I<idx> should be in the
|
---|
182 | range of 0 to X509_ATTRIBUTE_count() - 1 or an error will occur.
|
---|
183 |
|
---|
184 | X509_ATTRIBUTE_get0_data() returns the data of an B<ASN1_TYPE> object at
|
---|
185 | index I<idx> in the attribute I<attr>. I<data> is unused and can be set to NULL.
|
---|
186 | An error will occur if the attribute type I<atrtype> does not match the type of
|
---|
187 | the B<ASN1_TYPE> object at index I<idx> OR if I<atrtype> is either
|
---|
188 | B<V_ASN1_BOOLEAN> or B<V_ASN1_NULL> OR if the I<idx> is not in the
|
---|
189 | range 0 to X509_ATTRIBUTE_count() - 1.
|
---|
190 |
|
---|
191 | X509at_get0_data_by_OBJ() finds the first attribute in an attribute list I<x>
|
---|
192 | that matches the I<obj> starting at index I<lastpos> and returns the data
|
---|
193 | retrieved from the found attributes first B<ASN1_TYPE> object. An error will
|
---|
194 | occur if the attribute type I<type> does not match the type of the B<ASN1_TYPE>
|
---|
195 | object OR if I<type> is either B<V_ASN1_BOOLEAN> or B<V_ASN1_NULL> OR the
|
---|
196 | attribute is not found.
|
---|
197 | If I<lastpos> is less than -1 then an error will occur if there are multiple
|
---|
198 | objects in the list I<x> that match I<obj>.
|
---|
199 | If I<lastpos> is less than -2 then an error will occur if there is more than
|
---|
200 | one B<ASN1_TYPE> object in the found attribute.
|
---|
201 |
|
---|
202 | =head1 RETURN VALUES
|
---|
203 |
|
---|
204 | X509at_get_attr_count() returns the number of attributes in the list I<x> or -1
|
---|
205 | if I<x> is NULL.
|
---|
206 |
|
---|
207 | X509at_get_attr_by_OBJ() returns -1 if either the list is empty OR the object
|
---|
208 | is not found, otherwise it returns the location of the object in the list.
|
---|
209 |
|
---|
210 | X509at_get_attr_by_NID() is similar to X509at_get_attr_by_OBJ(), except that
|
---|
211 | it returns -2 if the I<nid> is not known by OpenSSL.
|
---|
212 |
|
---|
213 | X509at_get_attr() returns either an B<X509_ATTRIBUTE> or NULL if there is a error.
|
---|
214 |
|
---|
215 | X509at_delete_attr() returns either the removed B<X509_ATTRIBUTE> or NULL if
|
---|
216 | there is a error.
|
---|
217 |
|
---|
218 | X509_ATTRIBUTE_count() returns -1 on error, otherwise it returns the number
|
---|
219 | of B<ASN1_TYPE> elements.
|
---|
220 |
|
---|
221 | X509_ATTRIBUTE_get0_type() returns NULL on error, otherwise it returns a
|
---|
222 | B<ASN1_TYPE> object.
|
---|
223 |
|
---|
224 | X509_ATTRIBUTE_get0_data() returns NULL if an error occurs,
|
---|
225 | otherwise it returns the data associated with an B<ASN1_TYPE> object.
|
---|
226 |
|
---|
227 | X509_ATTRIBUTE_set1_object() and X509_ATTRIBUTE_set1_data() returns 1 on
|
---|
228 | success, or 0 otherwise.
|
---|
229 |
|
---|
230 | X509_ATTRIBUTE_create(), X509_ATTRIBUTE_create_by_OBJ(),
|
---|
231 | X509_ATTRIBUTE_create_by_NID() and X509_ATTRIBUTE_create_by_txt() return either
|
---|
232 | a B<X509_ATTRIBUTE> on success, or NULL if there is a error.
|
---|
233 |
|
---|
234 | X509at_add1_attr(), X509at_add1_attr_by_OBJ(), X509at_add1_attr_by_NID() and
|
---|
235 | X509at_add1_attr_by_txt() return NULL on error, otherwise they return a list
|
---|
236 | of B<X509_ATTRIBUTE>.
|
---|
237 |
|
---|
238 | X509at_get0_data_by_OBJ() returns the data retrieved from the found attributes
|
---|
239 | first B<ASN1_TYPE> object, or NULL if an error occurs.
|
---|
240 |
|
---|
241 | =head1 SEE ALSO
|
---|
242 |
|
---|
243 | L<ASN1_TYPE_get(3)>,
|
---|
244 | L<ASN1_INTEGER_get(3)>,
|
---|
245 | L<ASN1_ENUMERATED_get(3)>,
|
---|
246 | L<ASN1_STRING_get0_data(3)>,
|
---|
247 | L<ASN1_STRING_length(3)>,
|
---|
248 | L<ASN1_STRING_type(3)>,
|
---|
249 | L<X509_REQ_get_attr(3)>,
|
---|
250 | L<EVP_PKEY_get_attr(3)>,
|
---|
251 | L<CMS_signed_get_attr(3)>,
|
---|
252 | L<PKCS8_pkey_get0_attrs(3)>,
|
---|
253 |
|
---|
254 | =head1 COPYRIGHT
|
---|
255 |
|
---|
256 | Copyright 2023-2024 The OpenSSL Project Authors. All Rights Reserved.
|
---|
257 |
|
---|
258 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
259 | this file except in compliance with the License. You can obtain a copy
|
---|
260 | in the file LICENSE in the source distribution or at
|
---|
261 | L<https://www.openssl.org/source/license.html>.
|
---|
262 |
|
---|
263 | =cut
|
---|