=pod =head1 NAME X509_ATTRIBUTE, X509at_get_attr, X509at_get_attr_count, X509at_get_attr_by_NID, X509at_get_attr_by_OBJ, X509at_delete_attr, X509at_add1_attr, X509at_add1_attr_by_OBJ, X509at_add1_attr_by_NID, X509at_add1_attr_by_txt, X509at_get0_data_by_OBJ, X509_ATTRIBUTE_create, X509_ATTRIBUTE_create_by_NID, X509_ATTRIBUTE_create_by_OBJ, X509_ATTRIBUTE_create_by_txt, X509_ATTRIBUTE_set1_object, X509_ATTRIBUTE_set1_data, X509_ATTRIBUTE_count, X509_ATTRIBUTE_get0_data, X509_ATTRIBUTE_get0_object, X509_ATTRIBUTE_get0_type - X509 attribute functions =head1 SYNOPSIS #include typedef struct x509_attributes_st X509_ATTRIBUTE; int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x); int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid, int lastpos); int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, const ASN1_OBJECT *obj, int lastpos); X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc); X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc); STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x, X509_ATTRIBUTE *attr); STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x, const ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len); STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x, int nid, int type, const unsigned char *bytes, int len); STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x, const char *attrname, int type, const unsigned char *bytes, int len); void *X509at_get0_data_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *x, const ASN1_OBJECT *obj, int lastpos, int type); X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value); X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid, int atrtype, const void *data, int len); X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr, const ASN1_OBJECT *obj, int atrtype, const void *data, int len); X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr, const char *atrname, int type, const unsigned char *bytes, int len); int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj); int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len); void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, int atrtype, void *data); int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr); ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr); ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx); =head1 DESCRIPTION B objects are used by many standards including X509, X509_REQ, PKCS12, PKCS8, PKCS7 and CMS. The B object is used to represent the ASN.1 Attribute as defined in RFC 5280, i.e. Attribute ::= SEQUENCE { type AttributeType, values SET OF AttributeValue } AttributeType ::= OBJECT IDENTIFIER AttributeValue ::= ANY -- DEFINED BY AttributeType For example CMS defines the signing-time attribute as: id-signingTime OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs9(9) 5 } SigningTime ::= Time Time ::= CHOICE { utcTime UTCTime, generalizedTime GeneralizedTime } In OpenSSL B maps to an B object and B maps to a list of B objects. The following functions are used for B objects. X509at_get_attr_by_OBJ() finds the location of the first matching object I in a list of attributes I. The search starts at the position after I. If the returned value is positive then it can be used on the next call to X509at_get_attr_by_OBJ() as the value of I in order to iterate through the remaining attributes. I can be set to any negative value on the first call, in order to start searching from the start of the list. X509at_get_attr_by_NID() is similar to X509at_get_attr_by_OBJ() except that it passes the numerical identifier (NID) I associated with the object. See for a list of NID_*. X509at_get_attr() returns the B object at index I in the list of attributes I. I should be in the range from 0 to X509at_get_attr_count() - 1. X509at_delete_attr() removes the B object at index I in the list of attributes I. X509at_add1_attr() pushes a copy of the passed in B object to the list I. Both I and I must be non NULL or an error will occur. If I<*x> is NULL then a new list is created, otherwise it uses the passed in list. An error will occur if an existing attribute (with the same attribute type) already exists in the attribute list. X509at_add1_attr_by_OBJ() creates a new B using X509_ATTRIBUTE_set1_object() and X509_ATTRIBUTE_set1_data() to assign a new I with type I and data I of length I and then pushes it to the attribute list I. Both I and I must be non NULL or an error will occur. If I<*x> is NULL then a new attribute list is created. If I already exists in the attribute list then an error occurs. X509at_add1_attr_by_NID() is similar to X509at_add1_attr_by_OBJ() except that it passes the numerical identifier (NID) I associated with the object. See for a list of NID_*. X509at_add1_attr_by_txt() is similar to X509at_add1_attr_by_OBJ() except that it passes a name I associated with the object. See for a list of SN_* names. X509_ATTRIBUTE_set1_object() assigns a B I to the attribute I. If I contained an existing B then it is freed. An error occurs if either I or I are NULL, or if the passed in I cannot be duplicated. X509_ATTRIBUTE_set1_data() pushes a new B object onto the I attributes list. The new object is assigned a copy of the data in I of size I. If I has flag I set then a table lookup using the I attributes NID is used to set an B using ASN1_STRING_set_by_NID(), and the passed in I must be in the format required for that object type or an error will occur. If I is not -1 then internally ASN1_STRING_type_new() is used with the passed in I. If I is 0 the call does nothing except return 1. X509_ATTRIBUTE_create() creates a new B using the I to set the B OID and the I and I to set the B. X509_ATTRIBUTE_create_by_OBJ() uses X509_ATTRIBUTE_set1_object() and X509_ATTRIBUTE_set1_data() to assign a new I with type I and data I of length I. If the passed in attribute I OR I<*attr> is NULL then a new B will be returned, otherwise the passed in B is used. Note that the ASN1_OBJECT I is pushed onto the attributes existing list of objects, which could be an issue if the attributes was different. X509_ATTRIBUTE_create_by_NID() is similar to X509_ATTRIBUTE_create_by_OBJ() except that it passes the numerical identifier (NID) I associated with the object. See for a list of NID_*. X509_ATTRIBUTE_create_by_txt() is similar to X509_ATTRIBUTE_create_by_OBJ() except that it passes a name I associated with the object. See for a list of SN_* names. X509_ATTRIBUTE_count() returns the number of B objects in an attribute I. X509_ATTRIBUTE_get0_type() returns the B object at index I in the attribute list I. I should be in the range of 0 to X509_ATTRIBUTE_count() - 1 or an error will occur. X509_ATTRIBUTE_get0_data() returns the data of an B object at index I in the attribute I. I is unused and can be set to NULL. An error will occur if the attribute type I does not match the type of the B object at index I OR if I is either B or B OR if the I is not in the range 0 to X509_ATTRIBUTE_count() - 1. X509at_get0_data_by_OBJ() finds the first attribute in an attribute list I that matches the I starting at index I and returns the data retrieved from the found attributes first B object. An error will occur if the attribute type I does not match the type of the B object OR if I is either B or B OR the attribute is not found. If I is less than -1 then an error will occur if there are multiple objects in the list I that match I. If I is less than -2 then an error will occur if there is more than one B object in the found attribute. =head1 RETURN VALUES X509at_get_attr_count() returns the number of attributes in the list I or -1 if I is NULL. X509at_get_attr_by_OBJ() returns -1 if either the list is empty OR the object is not found, otherwise it returns the location of the object in the list. X509at_get_attr_by_NID() is similar to X509at_get_attr_by_OBJ(), except that it returns -2 if the I is not known by OpenSSL. X509at_get_attr() returns either an B or NULL if there is a error. X509at_delete_attr() returns either the removed B or NULL if there is a error. X509_ATTRIBUTE_count() returns -1 on error, otherwise it returns the number of B elements. X509_ATTRIBUTE_get0_type() returns NULL on error, otherwise it returns a B object. X509_ATTRIBUTE_get0_data() returns NULL if an error occurs, otherwise it returns the data associated with an B object. X509_ATTRIBUTE_set1_object() and X509_ATTRIBUTE_set1_data() returns 1 on success, or 0 otherwise. X509_ATTRIBUTE_create(), X509_ATTRIBUTE_create_by_OBJ(), X509_ATTRIBUTE_create_by_NID() and X509_ATTRIBUTE_create_by_txt() return either a B on success, or NULL if there is a error. X509at_add1_attr(), X509at_add1_attr_by_OBJ(), X509at_add1_attr_by_NID() and X509at_add1_attr_by_txt() return NULL on error, otherwise they return a list of B. X509at_get0_data_by_OBJ() returns the data retrieved from the found attributes first B object, or NULL if an error occurs. =head1 SEE ALSO L, L, L, L, L, L, L, L, L, L, =head1 COPYRIGHT Copyright 2023-2024 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L. =cut