EVP_PKEY_get_attr.pod 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. =pod
  2. =head1 NAME
  3. EVP_PKEY_get_attr,
  4. EVP_PKEY_get_attr_count,
  5. EVP_PKEY_get_attr_by_NID, EVP_PKEY_get_attr_by_OBJ,
  6. EVP_PKEY_delete_attr,
  7. EVP_PKEY_add1_attr,
  8. EVP_PKEY_add1_attr_by_OBJ, EVP_PKEY_add1_attr_by_NID, EVP_PKEY_add1_attr_by_txt
  9. - EVP_PKEY B<X509_ATTRIBUTE> functions
  10. =head1 SYNOPSIS
  11. #include <openssl/x509.h>
  12. int EVP_PKEY_get_attr_count(const EVP_PKEY *key);
  13. int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, int lastpos);
  14. int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, const ASN1_OBJECT *obj,
  15. int lastpos);
  16. X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc);
  17. X509_ATTRIBUTE *EVP_PKEY_delete_attr(EVP_PKEY *key, int loc);
  18. int EVP_PKEY_add1_attr(EVP_PKEY *key, X509_ATTRIBUTE *attr);
  19. int EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key,
  20. const ASN1_OBJECT *obj, int type,
  21. const unsigned char *bytes, int len);
  22. int EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key,
  23. int nid, int type,
  24. const unsigned char *bytes, int len);
  25. int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key,
  26. const char *attrname, int type,
  27. const unsigned char *bytes, int len);
  28. =head1 DESCRIPTION
  29. These functions are used by B<PKCS12>.
  30. EVP_PKEY_get_attr_by_OBJ() finds the location of the first matching object I<obj>
  31. in the I<key> attribute list. The search starts at the position after I<lastpos>.
  32. If the returned value is positive then it can be used on the next call to
  33. EVP_PKEY_get_attr_by_OBJ() as the value of I<lastpos> in order to iterate through
  34. the remaining attributes. I<lastpos> can be set to any negative value on the
  35. first call, in order to start searching from the start of the attribute list.
  36. EVP_PKEY_get_attr_by_NID() is similar to EVP_PKEY_get_attr_by_OBJ() except that
  37. it passes the numerical identifier (NID) I<nid> associated with the object.
  38. See <openssl/obj_mac.h> for a list of NID_*.
  39. EVP_PKEY_get_attr() returns the B<X509_ATTRIBUTE> object at index I<loc> in the
  40. I<key> attribute list. I<loc> should be in the range from 0 to
  41. EVP_PKEY_get_attr_count() - 1.
  42. EVP_PKEY_delete_attr() removes the B<X509_ATTRIBUTE> object at index I<loc> in
  43. the I<key> attribute list.
  44. EVP_PKEY_add1_attr() pushes a copy of the passed in B<X509_ATTRIBUTE> object
  45. to the I<key> attribute list. A new I<key> attribute list is created if required.
  46. An error occurs if either I<attr> is NULL, or the attribute already exists.
  47. EVP_PKEY_add1_attr_by_OBJ() creates a new B<X509_ATTRIBUTE> using
  48. X509_ATTRIBUTE_set1_object() and X509_ATTRIBUTE_set1_data() to assign a new
  49. I<obj> with type I<type> and data I<bytes> of length I<len> and then pushes it
  50. to the I<key> object's attribute list. If I<obj> already exists in the attribute
  51. list then an error occurs.
  52. EVP_PKEY_add1_attr_by_NID() is similar to EVP_PKEY_add1_attr_by_OBJ() except
  53. that it passes the numerical identifier (NID) I<nid> associated with the object.
  54. See <openssl/obj_mac.h> for a list of NID_*.
  55. EVP_PKEY_add1_attr_by_txt() is similar to EVP_PKEY_add1_attr_by_OBJ() except
  56. that it passes a name I<attrname> associated with the object.
  57. See <openssl/obj_mac.h> for a list of SN_* names.
  58. =head1 RETURN VALUES
  59. EVP_PKEY_get_attr_count() returns the number of attributes in the I<key> object
  60. attribute list or -1 if the attribute list is NULL.
  61. EVP_PKEY_get_attr_by_OBJ() returns -1 if either the list is empty OR the object
  62. is not found, otherwise it returns the location of the object in the list.
  63. EVP_PKEY_get_attr_by_NID() is similar to EVP_PKEY_get_attr_by_OBJ(), except that
  64. it returns -2 if the I<nid> is not known by OpenSSL.
  65. EVP_PKEY_get_attr() returns either a B<X509_ATTRIBUTE> or NULL if there is a
  66. error.
  67. EVP_PKEY_delete_attr() returns either the removed B<X509_ATTRIBUTE> or NULL if
  68. there is a error.
  69. EVP_PKEY_add1_attr(), EVP_PKEY_add1_attr_by_OBJ(), EVP_PKEY_add1_attr_by_NID()
  70. and EVP_PKEY_add1_attr_by_txt() return 1 on success or 0 otherwise.
  71. =head1 NOTES
  72. A B<EVP_PKEY> object's attribute list is initially NULL. All the above functions
  73. listed will return an error unless EVP_PKEY_add1_attr() is called.
  74. All functions listed assume that the I<key> is not NULL.
  75. =head1 SEE ALSO
  76. L<X509_ATTRIBUTE(3)>
  77. =head1 COPYRIGHT
  78. Copyright 2023-2024 The OpenSSL Project Authors. All Rights Reserved.
  79. Licensed under the Apache License 2.0 (the "License"). You may not use
  80. this file except in compliance with the License. You can obtain a copy
  81. in the file LICENSE in the source distribution or at
  82. L<https://www.openssl.org/source/license.html>.
  83. =cut