EVP_PKEY_set1_RSA.pod 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. =pod
  2. =head1 NAME
  3. EVP_PKEY_set1_RSA, EVP_PKEY_set1_DSA, EVP_PKEY_set1_DH, EVP_PKEY_set1_EC_KEY,
  4. EVP_PKEY_get1_RSA, EVP_PKEY_get1_DSA, EVP_PKEY_get1_DH, EVP_PKEY_get1_EC_KEY,
  5. EVP_PKEY_get0_RSA, EVP_PKEY_get0_DSA, EVP_PKEY_get0_DH, EVP_PKEY_get0_EC_KEY,
  6. EVP_PKEY_assign_RSA, EVP_PKEY_assign_DSA, EVP_PKEY_assign_DH,
  7. EVP_PKEY_assign_EC_KEY, EVP_PKEY_assign_POLY1305, EVP_PKEY_assign_SIPHASH,
  8. EVP_PKEY_get0_hmac, EVP_PKEY_get0_poly1305, EVP_PKEY_get0_siphash,
  9. EVP_PKEY_type, EVP_PKEY_id, EVP_PKEY_base_id, EVP_PKEY_set_alias_type,
  10. EVP_PKEY_set1_engine - EVP_PKEY assignment functions
  11. =head1 SYNOPSIS
  12. #include <openssl/evp.h>
  13. int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key);
  14. int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key);
  15. int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key);
  16. int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key);
  17. RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey);
  18. DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey);
  19. DH *EVP_PKEY_get1_DH(EVP_PKEY *pkey);
  20. EC_KEY *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey);
  21. const unsigned char *EVP_PKEY_get0_hmac(const EVP_PKEY *pkey, size_t *len);
  22. const unsigned char *EVP_PKEY_get0_poly1305(const EVP_PKEY *pkey, size_t *len);
  23. const unsigned char *EVP_PKEY_get0_siphash(const EVP_PKEY *pkey, size_t *len);
  24. RSA *EVP_PKEY_get0_RSA(EVP_PKEY *pkey);
  25. DSA *EVP_PKEY_get0_DSA(EVP_PKEY *pkey);
  26. DH *EVP_PKEY_get0_DH(EVP_PKEY *pkey);
  27. EC_KEY *EVP_PKEY_get0_EC_KEY(EVP_PKEY *pkey);
  28. int EVP_PKEY_assign_RSA(EVP_PKEY *pkey, RSA *key);
  29. int EVP_PKEY_assign_DSA(EVP_PKEY *pkey, DSA *key);
  30. int EVP_PKEY_assign_DH(EVP_PKEY *pkey, DH *key);
  31. int EVP_PKEY_assign_EC_KEY(EVP_PKEY *pkey, EC_KEY *key);
  32. int EVP_PKEY_assign_POLY1305(EVP_PKEY *pkey, ASN1_OCTET_STRING *key);
  33. int EVP_PKEY_assign_SIPHASH(EVP_PKEY *pkey, ASN1_OCTET_STRING *key);
  34. int EVP_PKEY_id(const EVP_PKEY *pkey);
  35. int EVP_PKEY_base_id(const EVP_PKEY *pkey);
  36. int EVP_PKEY_type(int type);
  37. int EVP_PKEY_set_alias_type(EVP_PKEY *pkey, int type);
  38. int EVP_PKEY_set1_engine(EVP_PKEY *pkey, ENGINE *engine);
  39. =head1 DESCRIPTION
  40. EVP_PKEY_set1_RSA(), EVP_PKEY_set1_DSA(), EVP_PKEY_set1_DH() and
  41. EVP_PKEY_set1_EC_KEY() set the key referenced by B<pkey> to B<key>.
  42. EVP_PKEY_get1_RSA(), EVP_PKEY_get1_DSA(), EVP_PKEY_get1_DH() and
  43. EVP_PKEY_get1_EC_KEY() return the referenced key in B<pkey> or
  44. B<NULL> if the key is not of the correct type.
  45. EVP_PKEY_get0_hmac(), EVP_PKEY_get0_poly1305(), EVP_PKEY_get0_siphash(),
  46. EVP_PKEY_get0_RSA(), EVP_PKEY_get0_DSA(), EVP_PKEY_get0_DH()
  47. and EVP_PKEY_get0_EC_KEY() also return the referenced key in B<pkey> or B<NULL>
  48. if the key is not of the correct type but the reference count of the
  49. returned key is B<not> incremented and so must not be freed up after use.
  50. EVP_PKEY_assign_RSA(), EVP_PKEY_assign_DSA(), EVP_PKEY_assign_DH(),
  51. EVP_PKEY_assign_EC_KEY(), EVP_PKEY_assign_POLY1305() and
  52. EVP_PKEY_assign_SIPHASH() also set the referenced key to B<key>
  53. however these use the supplied B<key> internally and so B<key>
  54. will be freed when the parent B<pkey> is freed.
  55. EVP_PKEY_base_id() returns the type of B<pkey>. For example
  56. an RSA key will return B<EVP_PKEY_RSA>.
  57. EVP_PKEY_id() returns the actual OID associated with B<pkey>. Historically keys
  58. using the same algorithm could use different OIDs. For example an RSA key could
  59. use the OIDs corresponding to the NIDs B<NID_rsaEncryption> (equivalent to
  60. B<EVP_PKEY_RSA>) or B<NID_rsa> (equivalent to B<EVP_PKEY_RSA2>). The use of
  61. alternative non-standard OIDs is now rare so B<EVP_PKEY_RSA2> et al are not
  62. often seen in practice.
  63. EVP_PKEY_type() returns the underlying type of the NID B<type>. For example
  64. EVP_PKEY_type(EVP_PKEY_RSA2) will return B<EVP_PKEY_RSA>.
  65. EVP_PKEY_set1_engine() sets the ENGINE handling B<pkey> to B<engine>. It
  66. must be called after the key algorithm and components are set up.
  67. If B<engine> does not include an B<EVP_PKEY_METHOD> for B<pkey> an
  68. error occurs.
  69. EVP_PKEY_set_alias_type() allows modifying a EVP_PKEY to use a
  70. different set of algorithms than the default. This is currently used
  71. to support SM2 keys, which use an identical encoding to ECDSA.
  72. =head1 NOTES
  73. In accordance with the OpenSSL naming convention the key obtained
  74. from or assigned to the B<pkey> using the B<1> functions must be
  75. freed as well as B<pkey>.
  76. EVP_PKEY_assign_RSA(), EVP_PKEY_assign_DSA(), EVP_PKEY_assign_DH(),
  77. EVP_PKEY_assign_EC_KEY(), EVP_PKEY_assign_POLY1305()
  78. and EVP_PKEY_assign_SIPHASH() are implemented as macros.
  79. Most applications wishing to know a key type will simply call
  80. EVP_PKEY_base_id() and will not care about the actual type:
  81. which will be identical in almost all cases.
  82. Previous versions of this document suggested using EVP_PKEY_type(pkey->type)
  83. to determine the type of a key. Since B<EVP_PKEY> is now opaque this
  84. is no longer possible: the equivalent is EVP_PKEY_base_id(pkey).
  85. EVP_PKEY_set1_engine() is typically used by an ENGINE returning an HSM
  86. key as part of its routine to load a private key.
  87. =head1 EXAMPLES
  88. After loading an ECC key, it is possible to convert it to using SM2
  89. algorithms with EVP_PKEY_set_alias_type:
  90. EVP_PKEY_set_alias_type(pkey, EVP_PKEY_SM2);
  91. =head1 RETURN VALUES
  92. EVP_PKEY_set1_RSA(), EVP_PKEY_set1_DSA(), EVP_PKEY_set1_DH() and
  93. EVP_PKEY_set1_EC_KEY() return 1 for success or 0 for failure.
  94. EVP_PKEY_get1_RSA(), EVP_PKEY_get1_DSA(), EVP_PKEY_get1_DH() and
  95. EVP_PKEY_get1_EC_KEY() return the referenced key or B<NULL> if
  96. an error occurred.
  97. EVP_PKEY_assign_RSA(), EVP_PKEY_assign_DSA(), EVP_PKEY_assign_DH(),
  98. EVP_PKEY_assign_EC_KEY(), EVP_PKEY_assign_POLY1305()
  99. and EVP_PKEY_assign_SIPHASH() return 1 for success and 0 for failure.
  100. EVP_PKEY_base_id(), EVP_PKEY_id() and EVP_PKEY_type() return a key
  101. type or B<NID_undef> (equivalently B<EVP_PKEY_NONE>) on error.
  102. EVP_PKEY_set1_engine() returns 1 for success and 0 for failure.
  103. EVP_PKEY_set_alias_type() returns 1 for success and 0 for error.
  104. =head1 SEE ALSO
  105. L<EVP_PKEY_new(3)>
  106. =head1 COPYRIGHT
  107. Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved.
  108. Licensed under the Apache License 2.0 (the "License"). You may not use
  109. this file except in compliance with the License. You can obtain a copy
  110. in the file LICENSE in the source distribution or at
  111. L<https://www.openssl.org/source/license.html>.
  112. =cut