PKCS12_parse.pod 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. =pod
  2. =head1 NAME
  3. PKCS12_parse - parse a PKCS#12 structure
  4. =head1 SYNOPSIS
  5. #include <openssl/pkcs12.h>
  6. int PKCS12_parse(PKCS12 *p12, const char *pass, EVP_PKEY **pkey, X509 **cert,
  7. STACK_OF(X509) **ca);
  8. =head1 DESCRIPTION
  9. PKCS12_parse() parses a PKCS12 structure.
  10. B<p12> is the B<PKCS12> structure to parse. B<pass> is the passphrase to use.
  11. If successful the private key will be written to B<*pkey>, the corresponding
  12. certificate to B<*cert> and any additional certificates to B<*ca>.
  13. =head1 NOTES
  14. The parameters B<pkey> and B<cert> cannot be B<NULL>. B<ca> can be <NULL> in
  15. which case additional certificates will be discarded. B<*ca> can also be a
  16. valid STACK in which case additional certificates are appended to B<*ca>. If
  17. B<*ca> is B<NULL> a new STACK will be allocated.
  18. The B<friendlyName> and B<localKeyID> attributes (if present) on each
  19. certificate will be stored in the B<alias> and B<keyid> attributes of the
  20. B<X509> structure.
  21. The parameter B<pass> is interpreted as a string in the UTF-8 encoding. If it
  22. is not valid UTF-8, then it is assumed to be ISO8859-1 instead.
  23. In particular, this means that passwords in the locale character set
  24. (or code page on Windows) must potentially be converted to UTF-8 before
  25. use. This may include passwords from local text files, or input from
  26. the terminal or command line. Refer to the documentation of
  27. L<UI_OpenSSL(3)>, for example.
  28. =head1 RETURN VALUES
  29. PKCS12_parse() returns 1 for success and zero if an error occurred.
  30. The error can be obtained from L<ERR_get_error(3)>
  31. =head1 BUGS
  32. Only a single private key and corresponding certificate is returned by this
  33. function. More complex PKCS#12 files with multiple private keys will only
  34. return the first match.
  35. Only B<friendlyName> and B<localKeyID> attributes are currently stored in
  36. certificates. Other attributes are discarded.
  37. Attributes currently cannot be stored in the private key B<EVP_PKEY> structure.
  38. =head1 SEE ALSO
  39. L<d2i_PKCS12(3)>,
  40. L<passphrase-encoding(7)>
  41. =head1 COPYRIGHT
  42. Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved.
  43. Licensed under the Apache License 2.0 (the "License"). You may not use
  44. this file except in compliance with the License. You can obtain a copy
  45. in the file LICENSE in the source distribution or at
  46. L<https://www.openssl.org/source/license.html>.
  47. =cut