PKCS12_add_localkeyid.pod 895 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. =pod
  2. =head1 NAME
  3. PKCS12_add_localkeyid - Add the localKeyId attribute to a PKCS#12 safeBag
  4. =head1 SYNOPSIS
  5. #include <openssl/pkcs12.h>
  6. int PKCS12_add_localkeyid(PKCS12_SAFEBAG *bag, const char *name,
  7. int namelen);
  8. =head1 DESCRIPTION
  9. PKCS12_add_localkeyid() adds an octet string representation of the PKCS#9
  10. localKeyId attribute to a PKCS#12 safeBag.
  11. I<bag> is the B<PKCS12_SAFEBAG> to add the attribute to.
  12. =head1 RETURN VALUES
  13. Returns 1 for success or 0 for failure.
  14. =head1 SEE ALSO
  15. L<PKCS12_add_friendlyname_asc(3)>
  16. =head1 COPYRIGHT
  17. Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
  18. Licensed under the Apache License 2.0 (the "License"). You may not use
  19. this file except in compliance with the License. You can obtain a copy
  20. in the file LICENSE in the source distribution or at
  21. L<https://www.openssl.org/source/license.html>.
  22. =cut