X509_PUBKEY_new.pod 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. =pod
  2. =head1 NAME
  3. X509_PUBKEY_new, X509_PUBKEY_free, X509_PUBKEY_dup,
  4. X509_PUBKEY_set, X509_PUBKEY_get0, X509_PUBKEY_get,
  5. d2i_PUBKEY, i2d_PUBKEY, d2i_PUBKEY_bio, d2i_PUBKEY_fp,
  6. i2d_PUBKEY_fp, i2d_PUBKEY_bio, X509_PUBKEY_set0_param,
  7. X509_PUBKEY_get0_param - SubjectPublicKeyInfo public key functions
  8. =head1 SYNOPSIS
  9. #include <openssl/x509.h>
  10. X509_PUBKEY *X509_PUBKEY_new(void);
  11. void X509_PUBKEY_free(X509_PUBKEY *a);
  12. X509_PUBKEY *X509_PUBKEY_dup(const X509_PUBKEY *a);
  13. int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
  14. EVP_PKEY *X509_PUBKEY_get0(X509_PUBKEY *key);
  15. EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key);
  16. EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp, long length);
  17. int i2d_PUBKEY(const EVP_PKEY *a, unsigned char **pp);
  18. EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);
  19. EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
  20. int i2d_PUBKEY_fp(const FILE *fp, EVP_PKEY *pkey);
  21. int i2d_PUBKEY_bio(BIO *bp, const EVP_PKEY *pkey);
  22. int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
  23. int ptype, void *pval,
  24. unsigned char *penc, int penclen);
  25. int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
  26. const unsigned char **pk, int *ppklen,
  27. X509_ALGOR **pa, X509_PUBKEY *pub);
  28. =head1 DESCRIPTION
  29. The B<X509_PUBKEY> structure represents the ASN.1 B<SubjectPublicKeyInfo>
  30. structure defined in RFC5280 and used in certificates and certificate requests.
  31. X509_PUBKEY_new() allocates and initializes an B<X509_PUBKEY> structure.
  32. X509_PUBKEY_free() frees up B<X509_PUBKEY> structure B<a>. If B<a> is NULL
  33. nothing is done.
  34. X509_PUBKEY_set() sets the public key in B<*x> to the public key contained
  35. in the B<EVP_PKEY> structure B<pkey>. If B<*x> is not NULL any existing
  36. public key structure will be freed.
  37. X509_PUBKEY_get0() returns the public key contained in B<key>. The returned
  38. value is an internal pointer which B<MUST NOT> be freed after use.
  39. X509_PUBKEY_get() is similar to X509_PUBKEY_get0() except the reference
  40. count on the returned key is incremented so it B<MUST> be freed using
  41. EVP_PKEY_free() after use.
  42. d2i_PUBKEY() and i2d_PUBKEY() decode and encode an B<EVP_PKEY> structure
  43. using B<SubjectPublicKeyInfo> format. They otherwise follow the conventions of
  44. other ASN.1 functions such as d2i_X509().
  45. d2i_PUBKEY_bio(), d2i_PUBKEY_fp(), i2d_PUBKEY_bio() and i2d_PUBKEY_fp() are
  46. similar to d2i_PUBKEY() and i2d_PUBKEY() except they decode or encode using a
  47. B<BIO> or B<FILE> pointer.
  48. X509_PUBKEY_set0_param() sets the public key parameters of B<pub>. The
  49. OID associated with the algorithm is set to B<aobj>. The type of the
  50. algorithm parameters is set to B<type> using the structure B<pval>.
  51. The encoding of the public key itself is set to the B<penclen>
  52. bytes contained in buffer B<penc>. On success ownership of all the supplied
  53. parameters is passed to B<pub> so they must not be freed after the
  54. call.
  55. X509_PUBKEY_get0_param() retrieves the public key parameters from B<pub>,
  56. B<*ppkalg> is set to the associated OID and the encoding consists of
  57. B<*ppklen> bytes at B<*pk>, B<*pa> is set to the associated
  58. AlgorithmIdentifier for the public key. If the value of any of these
  59. parameters is not required it can be set to B<NULL>. All of the
  60. retrieved pointers are internal and must not be freed after the
  61. call.
  62. =head1 NOTES
  63. The B<X509_PUBKEY> functions can be used to encode and decode public keys
  64. in a standard format.
  65. In many cases applications will not call the B<X509_PUBKEY> functions
  66. directly: they will instead call wrapper functions such as X509_get0_pubkey().
  67. =head1 RETURN VALUES
  68. If the allocation fails, X509_PUBKEY_new() returns B<NULL> and sets an error
  69. code that can be obtained by L<ERR_get_error(3)>.
  70. Otherwise it returns a pointer to the newly allocated structure.
  71. X509_PUBKEY_free() does not return a value.
  72. X509_PUBKEY_get0() and X509_PUBKEY_get() return a pointer to an B<EVP_PKEY>
  73. structure or B<NULL> if an error occurs.
  74. X509_PUBKEY_set(), X509_PUBKEY_set0_param() and X509_PUBKEY_get0_param()
  75. return 1 for success and 0 if an error occurred.
  76. =head1 SEE ALSO
  77. L<d2i_X509(3)>,
  78. L<ERR_get_error(3)>,
  79. L<X509_get_pubkey(3)>,
  80. =head1 COPYRIGHT
  81. Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
  82. Licensed under the Apache License 2.0 (the "License"). You may not use
  83. this file except in compliance with the License. You can obtain a copy
  84. in the file LICENSE in the source distribution or at
  85. L<https://www.openssl.org/source/license.html>.
  86. =cut