X509_PUBKEY_new.pod 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. =pod
  2. =head1 NAME
  3. X509_PUBKEY_new_ex, X509_PUBKEY_new, X509_PUBKEY_free, X509_PUBKEY_dup,
  4. X509_PUBKEY_set, X509_PUBKEY_get0, X509_PUBKEY_get,
  5. d2i_PUBKEY_ex, d2i_PUBKEY, i2d_PUBKEY, d2i_PUBKEY_bio, d2i_PUBKEY_fp,
  6. i2d_PUBKEY_fp, i2d_PUBKEY_bio, X509_PUBKEY_set0_public_key,
  7. X509_PUBKEY_set0_param, X509_PUBKEY_get0_param,
  8. X509_PUBKEY_eq - SubjectPublicKeyInfo public key functions
  9. =head1 SYNOPSIS
  10. #include <openssl/x509.h>
  11. X509_PUBKEY *X509_PUBKEY_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  12. X509_PUBKEY *X509_PUBKEY_new(void);
  13. void X509_PUBKEY_free(X509_PUBKEY *a);
  14. X509_PUBKEY *X509_PUBKEY_dup(const X509_PUBKEY *a);
  15. int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
  16. EVP_PKEY *X509_PUBKEY_get0(const X509_PUBKEY *key);
  17. EVP_PKEY *X509_PUBKEY_get(const X509_PUBKEY *key);
  18. EVP_PKEY *d2i_PUBKEY_ex(EVP_PKEY **a, const unsigned char **pp, long length,
  19. OSSL_LIB_CTX *libctx, const char *propq);
  20. EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp, long length);
  21. int i2d_PUBKEY(const EVP_PKEY *a, unsigned char **pp);
  22. EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);
  23. EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
  24. int i2d_PUBKEY_fp(const FILE *fp, EVP_PKEY *pkey);
  25. int i2d_PUBKEY_bio(BIO *bp, const EVP_PKEY *pkey);
  26. void X509_PUBKEY_set0_public_key(X509_PUBKEY *pub,
  27. unsigned char *penc, int penclen);
  28. int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
  29. int ptype, void *pval,
  30. unsigned char *penc, int penclen);
  31. int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
  32. const unsigned char **pk, int *ppklen,
  33. X509_ALGOR **pa, const X509_PUBKEY *pub);
  34. int X509_PUBKEY_eq(X509_PUBKEY *a, X509_PUBKEY *b);
  35. =head1 DESCRIPTION
  36. The B<X509_PUBKEY> structure represents the ASN.1 B<SubjectPublicKeyInfo>
  37. structure defined in RFC5280 and used in certificates and certificate requests.
  38. X509_PUBKEY_new_ex() allocates and initializes an B<X509_PUBKEY> structure
  39. associated with the given B<OSSL_LIB_CTX> in the I<libctx> parameter. Any
  40. algorithm fetches associated with using the B<X509_PUBKEY> object will use
  41. the property query string I<propq>. See L<crypto(7)/ALGORITHM FETCHING> for
  42. further information about algorithm fetching.
  43. X509_PUBKEY_new() is the same as X509_PUBKEY_new_ex() except that the default
  44. (NULL) B<OSSL_LIB_CTX> and a NULL property query string are used.
  45. X509_PUBKEY_dup() creates a duplicate copy of the B<X509_PUBKEY> object
  46. specified by I<a>.
  47. X509_PUBKEY_free() frees up B<X509_PUBKEY> structure I<a>. If I<a> is NULL
  48. nothing is done.
  49. X509_PUBKEY_set() sets the public key in I<*x> to the public key contained
  50. in the B<EVP_PKEY> structure I<pkey>. If I<*x> is not NULL any existing
  51. public key structure will be freed.
  52. X509_PUBKEY_get0() returns the public key contained in I<key>. The returned
  53. value is an internal pointer which B<MUST NOT> be freed after use.
  54. X509_PUBKEY_get() is similar to X509_PUBKEY_get0() except the reference
  55. count on the returned key is incremented so it B<MUST> be freed using
  56. EVP_PKEY_free() after use.
  57. d2i_PUBKEY_ex() decodes an B<EVP_PKEY> structure using B<SubjectPublicKeyInfo>
  58. format. Some public key decoding implementations may use cryptographic
  59. algorithms. In this case the supplied library context I<libctx> and property
  60. query string I<propq> are used.
  61. d2i_PUBKEY() does the same as d2i_PUBKEY_ex() except that the default
  62. library context and property query string are used.
  63. i2d_PUBKEY() encodes an B<EVP_PKEY> structure using B<SubjectPublicKeyInfo>
  64. format.
  65. d2i_PUBKEY_bio(), d2i_PUBKEY_fp(), i2d_PUBKEY_bio() and i2d_PUBKEY_fp() are
  66. similar to d2i_PUBKEY() and i2d_PUBKEY() except they decode or encode using a
  67. B<BIO> or B<FILE> pointer.
  68. X509_PUBKEY_set0_public_key() sets the public-key encoding of I<pub>
  69. to the I<penclen> bytes contained in buffer I<penc>.
  70. Any earlier public-key encoding in I<pub> is freed.
  71. I<penc> may be NULL to indicate that there is no actual public key data.
  72. Ownership of the I<penc> argument is passed to I<pub>.
  73. X509_PUBKEY_set0_param() sets the public-key parameters of I<pub>.
  74. The OID associated with the algorithm is set to I<aobj>. The type of the
  75. algorithm parameters is set to I<type> using the structure I<pval>.
  76. If I<penc> is not NULL the encoding of the public key itself is set
  77. to the I<penclen> bytes contained in buffer I<penc> and
  78. any earlier public-key encoding in I<pub> is freed.
  79. On success ownership of all the supplied arguments is passed to I<pub>
  80. so they must not be freed after the call.
  81. X509_PUBKEY_get0_param() retrieves the public key parameters from I<pub>,
  82. I<*ppkalg> is set to the associated OID and the encoding consists of
  83. I<*ppklen> bytes at I<*pk>, I<*pa> is set to the associated
  84. AlgorithmIdentifier for the public key. If the value of any of these
  85. parameters is not required it can be set to NULL. All of the
  86. retrieved pointers are internal and must not be freed after the
  87. call.
  88. X509_PUBKEY_eq() compares two B<X509_PUBKEY> values.
  89. =head1 NOTES
  90. The B<X509_PUBKEY> functions can be used to encode and decode public keys
  91. in a standard format.
  92. In many cases applications will not call the B<X509_PUBKEY> functions
  93. directly: they will instead call wrapper functions such as X509_get0_pubkey().
  94. =head1 RETURN VALUES
  95. If the allocation fails, X509_PUBKEY_new() and X509_PUBKEY_dup() return
  96. NULL and set an error code that can be obtained by L<ERR_get_error(3)>.
  97. Otherwise they return a pointer to the newly allocated structure.
  98. X509_PUBKEY_free() does not return a value.
  99. X509_PUBKEY_get0() and X509_PUBKEY_get() return a pointer to an B<EVP_PKEY>
  100. structure or NULL if an error occurs.
  101. X509_PUBKEY_set0_public_key() does not return a value.
  102. X509_PUBKEY_set(), X509_PUBKEY_set0_param() and X509_PUBKEY_get0_param()
  103. return 1 for success and 0 if an error occurred.
  104. X509_PUBKEY_eq() returns 1 for equal, 0 for different, and < 0 on error.
  105. =head1 SEE ALSO
  106. L<d2i_X509(3)>,
  107. L<ERR_get_error(3)>,
  108. L<X509_get_pubkey(3)>,
  109. =head1 HISTORY
  110. The X509_PUBKEY_new_ex() and X509_PUBKEY_eq() functions were added in OpenSSL
  111. 3.0.
  112. X509_PUBKEY_set0_public_key() was added in OpenSSL 3.1.
  113. =head1 COPYRIGHT
  114. Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
  115. Licensed under the Apache License 2.0 (the "License"). You may not use
  116. this file except in compliance with the License. You can obtain a copy
  117. in the file LICENSE in the source distribution or at
  118. L<https://www.openssl.org/source/license.html>.
  119. =cut