PKCS12_SAFEBAG_get0_attrs.pod 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. =pod
  2. =head1 NAME
  3. PKCS12_SAFEBAG_get0_attrs, PKCS12_get_attr_gen
  4. - Retrieve attributes from a PKCS#12 safeBag
  5. =head1 SYNOPSIS
  6. #include <openssl/pkcs12.h>
  7. const STACK_OF(X509_ATTRIBUTE) *PKCS12_SAFEBAG_get0_attrs(const PKCS12_SAFEBAG *bag);
  8. ASN1_TYPE *PKCS12_get_attr_gen(const STACK_OF(X509_ATTRIBUTE) *attrs,
  9. int attr_nid);
  10. =head1 DESCRIPTION
  11. PKCS12_SAFEBAG_get0_attrs() retrieves the stack of B<X509_ATTRIBUTE>s from a
  12. PKCS#12 safeBag. I<bag> is the B<PKCS12_SAFEBAG> to retrieve the attributes from.
  13. PKCS12_get_attr_gen() retrieves an attribute by NID from a stack of
  14. B<X509_ATTRIBUTE>s. I<attr_nid> is the NID of the attribute to retrieve.
  15. =head1 RETURN VALUES
  16. PKCS12_SAFEBAG_get0_attrs() returns the stack of B<X509_ATTRIBUTE>s from a
  17. PKCS#12 safeBag, which could be empty.
  18. PKCS12_get_attr_gen() returns an B<ASN1_TYPE> object containing the attribute,
  19. or NULL if the attribute was either not present or an error occurred.
  20. PKCS12_get_attr_gen() does not allocate a new attribute. The returned attribute
  21. is still owned by the B<PKCS12_SAFEBAG> in which it resides.
  22. =head1 SEE ALSO
  23. L<PKCS12_get_friendlyname(3)>,
  24. L<PKCS12_add_friendlyname_asc(3)>
  25. =head1 COPYRIGHT
  26. Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
  27. Licensed under the Apache License 2.0 (the "License"). You may not use
  28. this file except in compliance with the License. You can obtain a copy
  29. in the file LICENSE in the source distribution or at
  30. L<https://www.openssl.org/source/license.html>.
  31. =cut