evp.h 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.] */
  56. #ifndef OPENSSL_HEADER_EVP_H
  57. #define OPENSSL_HEADER_EVP_H
  58. #include <openssl/base.h>
  59. #include <openssl/thread.h>
  60. /* OpenSSL included digest and cipher functions in this header so we include
  61. * them for users that still expect that.
  62. *
  63. * TODO(fork): clean up callers so that they include what they use. */
  64. #include <openssl/aead.h>
  65. #include <openssl/base64.h>
  66. #include <openssl/cipher.h>
  67. #include <openssl/digest.h>
  68. #include <openssl/obj.h>
  69. #if defined(__cplusplus)
  70. extern "C" {
  71. #endif
  72. /* EVP abstracts over public/private key algorithms. */
  73. /* Public key objects. */
  74. /* EVP_PKEY_new creates a new, empty public-key object and returns it or NULL
  75. * on allocation failure. */
  76. OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_new(void);
  77. /* EVP_PKEY_free frees all data referenced by |pkey| and then frees |pkey|
  78. * itself. */
  79. OPENSSL_EXPORT void EVP_PKEY_free(EVP_PKEY *pkey);
  80. /* EVP_PKEY_up_ref increments the reference count of |pkey| and returns it. */
  81. OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_up_ref(EVP_PKEY *pkey);
  82. /* EVP_PKEY_is_opaque returns one if |pkey| is opaque. Opaque keys are backed by
  83. * custom implementations which do not expose key material and parameters. It is
  84. * an error to attempt to duplicate, export, or compare an opaque key. */
  85. OPENSSL_EXPORT int EVP_PKEY_is_opaque(const EVP_PKEY *pkey);
  86. /* EVP_PKEY_supports_digest returns one if |pkey| supports digests of
  87. * type |md|. This is intended for use with EVP_PKEYs backing custom
  88. * implementations which can't sign all digests. */
  89. OPENSSL_EXPORT int EVP_PKEY_supports_digest(const EVP_PKEY *pkey,
  90. const EVP_MD *md);
  91. /* EVP_PKEY_cmp compares |a| and |b| and returns one if they are equal, zero if
  92. * not and a negative number on error.
  93. *
  94. * WARNING: this differs from the traditional return value of a "cmp"
  95. * function. */
  96. OPENSSL_EXPORT int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
  97. /* EVP_PKEY_copy_parameters sets the parameters of |to| to equal the parameters
  98. * of |from|. It returns one on success and zero on error. */
  99. OPENSSL_EXPORT int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from);
  100. /* EVP_PKEY_missing_parameters returns one if |pkey| is missing needed
  101. * parameters or zero if not, or if the algorithm doesn't take parameters. */
  102. OPENSSL_EXPORT int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey);
  103. /* EVP_PKEY_size returns the maximum size, in bytes, of a signature signed by
  104. * |pkey|. For an RSA key, this returns the number of bytes needed to represent
  105. * the modulus. For an EC key, this returns the maximum size of a DER-encoded
  106. * ECDSA signature. */
  107. OPENSSL_EXPORT int EVP_PKEY_size(const EVP_PKEY *pkey);
  108. /* EVP_PKEY_bits returns the "size", in bits, of |pkey|. For an RSA key, this
  109. * returns the bit length of the modulus. For an EC key, this returns the bit
  110. * length of the group order. */
  111. OPENSSL_EXPORT int EVP_PKEY_bits(EVP_PKEY *pkey);
  112. /* EVP_PKEY_id returns the type of |pkey|, which is one of the |EVP_PKEY_*|
  113. * values. */
  114. OPENSSL_EXPORT int EVP_PKEY_id(const EVP_PKEY *pkey);
  115. /* EVP_PKEY_type returns |nid| if |nid| is a known key type and |NID_undef|
  116. * otherwise. */
  117. OPENSSL_EXPORT int EVP_PKEY_type(int nid);
  118. /* Getting and setting concrete public key types.
  119. *
  120. * The following functions get and set the underlying public key in an
  121. * |EVP_PKEY| object. The |set1| functions take an additional reference to the
  122. * underlying key and return one on success or zero on error. The |assign|
  123. * functions adopt the caller's reference. The |get1| functions return a fresh
  124. * reference to the underlying object or NULL if |pkey| is not of the correct
  125. * type. The |get0| functions behave the same but return a non-owning
  126. * pointer. */
  127. OPENSSL_EXPORT int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key);
  128. OPENSSL_EXPORT int EVP_PKEY_assign_RSA(EVP_PKEY *pkey, RSA *key);
  129. OPENSSL_EXPORT RSA *EVP_PKEY_get0_RSA(EVP_PKEY *pkey);
  130. OPENSSL_EXPORT RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey);
  131. OPENSSL_EXPORT int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key);
  132. OPENSSL_EXPORT int EVP_PKEY_assign_DSA(EVP_PKEY *pkey, DSA *key);
  133. OPENSSL_EXPORT DSA *EVP_PKEY_get0_DSA(EVP_PKEY *pkey);
  134. OPENSSL_EXPORT DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey);
  135. OPENSSL_EXPORT int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key);
  136. OPENSSL_EXPORT int EVP_PKEY_assign_EC_KEY(EVP_PKEY *pkey, EC_KEY *key);
  137. OPENSSL_EXPORT EC_KEY *EVP_PKEY_get0_EC_KEY(EVP_PKEY *pkey);
  138. OPENSSL_EXPORT EC_KEY *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey);
  139. #define EVP_PKEY_NONE NID_undef
  140. #define EVP_PKEY_RSA NID_rsaEncryption
  141. #define EVP_PKEY_DSA NID_dsa
  142. #define EVP_PKEY_EC NID_X9_62_id_ecPublicKey
  143. /* EVP_PKEY_assign sets the underlying key of |pkey| to |key|, which must be of
  144. * the given type. The |type| argument should be one of the |EVP_PKEY_*|
  145. * values. */
  146. OPENSSL_EXPORT int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key);
  147. /* EVP_PKEY_set_type sets the type of |pkey| to |type|, which should be one of
  148. * the |EVP_PKEY_*| values. It returns one if sucessful or zero otherwise. If
  149. * |pkey| is NULL, it simply reports whether the type is known. */
  150. OPENSSL_EXPORT int EVP_PKEY_set_type(EVP_PKEY *pkey, int type);
  151. /* EVP_PKEY_cmp_parameters compares the parameters of |a| and |b|. It returns
  152. * one if they match, zero if not, or a negative number of on error.
  153. *
  154. * WARNING: the return value differs from the usual return value convention. */
  155. OPENSSL_EXPORT int EVP_PKEY_cmp_parameters(const EVP_PKEY *a,
  156. const EVP_PKEY *b);
  157. /* ASN.1 functions */
  158. /* EVP_parse_public_key decodes a DER-encoded SubjectPublicKeyInfo structure
  159. * (RFC 5280) from |cbs| and advances |cbs|. It returns a newly-allocated
  160. * |EVP_PKEY| or NULL on error.
  161. *
  162. * The caller must check the type of the parsed public key to ensure it is
  163. * suitable and validate other desired key properties such as RSA modulus size
  164. * or EC curve. */
  165. OPENSSL_EXPORT EVP_PKEY *EVP_parse_public_key(CBS *cbs);
  166. /* EVP_marshal_public_key marshals |key| as a DER-encoded SubjectPublicKeyInfo
  167. * structure (RFC 5280) and appends the result to |cbb|. It returns one on
  168. * success and zero on error. */
  169. OPENSSL_EXPORT int EVP_marshal_public_key(CBB *cbb, const EVP_PKEY *key);
  170. /* EVP_parse_private_key decodes a DER-encoded PrivateKeyInfo structure (RFC
  171. * 5208) from |cbs| and advances |cbs|. It returns a newly-allocated |EVP_PKEY|
  172. * or NULL on error.
  173. *
  174. * The caller must check the type of the parsed private key to ensure it is
  175. * suitable and validate other desired key properties such as RSA modulus size
  176. * or EC curve.
  177. *
  178. * A PrivateKeyInfo ends with an optional set of attributes. These are not
  179. * processed and so this function will silently ignore any trailing data in the
  180. * structure. */
  181. OPENSSL_EXPORT EVP_PKEY *EVP_parse_private_key(CBS *cbs);
  182. /* EVP_marshal_private_key marshals |key| as a DER-encoded PrivateKeyInfo
  183. * structure (RFC 5208) and appends the result to |cbb|. It returns one on
  184. * success and zero on error. */
  185. OPENSSL_EXPORT int EVP_marshal_private_key(CBB *cbb, const EVP_PKEY *key);
  186. /* Signing */
  187. /* EVP_DigestSignInit sets up |ctx| for a signing operation with |type| and
  188. * |pkey|. The |ctx| argument must have been initialised with
  189. * |EVP_MD_CTX_init|. If |pctx| is not NULL, the |EVP_PKEY_CTX| of the signing
  190. * operation will be written to |*pctx|; this can be used to set alternative
  191. * signing options.
  192. *
  193. * It returns one on success, or zero on error. */
  194. OPENSSL_EXPORT int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
  195. const EVP_MD *type, ENGINE *e,
  196. EVP_PKEY *pkey);
  197. /* EVP_DigestSignUpdate appends |len| bytes from |data| to the data which will
  198. * be signed in |EVP_DigestSignFinal|. It returns one. */
  199. OPENSSL_EXPORT int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *data,
  200. size_t len);
  201. /* EVP_DigestSignFinal signs the data that has been included by one or more
  202. * calls to |EVP_DigestSignUpdate|. If |out_sig| is NULL then |*out_sig_len| is
  203. * set to the maximum number of output bytes. Otherwise, on entry,
  204. * |*out_sig_len| must contain the length of the |out_sig| buffer. If the call
  205. * is successful, the signature is written to |out_sig| and |*out_sig_len| is
  206. * set to its length.
  207. *
  208. * It returns one on success, or zero on error. */
  209. OPENSSL_EXPORT int EVP_DigestSignFinal(EVP_MD_CTX *ctx, uint8_t *out_sig,
  210. size_t *out_sig_len);
  211. /* EVP_DigestSignAlgorithm encodes the signing parameters of |ctx| as an
  212. * AlgorithmIdentifer and saves the result in |algor|.
  213. *
  214. * It returns one on success, or zero on error.
  215. *
  216. * TODO(davidben): This API should eventually lose the dependency on
  217. * crypto/asn1/. */
  218. OPENSSL_EXPORT int EVP_DigestSignAlgorithm(EVP_MD_CTX *ctx, X509_ALGOR *algor);
  219. /* Verifying */
  220. /* EVP_DigestVerifyInit sets up |ctx| for a signature verification operation
  221. * with |type| and |pkey|. The |ctx| argument must have been initialised with
  222. * |EVP_MD_CTX_init|. If |pctx| is not NULL, the |EVP_PKEY_CTX| of the signing
  223. * operation will be written to |*pctx|; this can be used to set alternative
  224. * signing options.
  225. *
  226. * It returns one on success, or zero on error. */
  227. OPENSSL_EXPORT int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
  228. const EVP_MD *type, ENGINE *e,
  229. EVP_PKEY *pkey);
  230. /* EVP_DigestVerifyInitFromAlgorithm sets up |ctx| for a signature verification
  231. * operation with public key |pkey| and parameters from |algor|. The |ctx|
  232. * argument must have been initialised with |EVP_MD_CTX_init|.
  233. *
  234. * It returns one on success, or zero on error.
  235. *
  236. * TODO(davidben): This API should eventually lose the dependency on
  237. * crypto/asn1/. */
  238. OPENSSL_EXPORT int EVP_DigestVerifyInitFromAlgorithm(EVP_MD_CTX *ctx,
  239. X509_ALGOR *algor,
  240. EVP_PKEY *pkey);
  241. /* EVP_DigestVerifyUpdate appends |len| bytes from |data| to the data which
  242. * will be verified by |EVP_DigestVerifyFinal|. It returns one. */
  243. OPENSSL_EXPORT int EVP_DigestVerifyUpdate(EVP_MD_CTX *ctx, const void *data,
  244. size_t len);
  245. /* EVP_DigestVerifyFinal verifies that |sig_len| bytes of |sig| are a valid
  246. * signature for the data that has been included by one or more calls to
  247. * |EVP_DigestVerifyUpdate|. It returns one on success and zero otherwise. */
  248. OPENSSL_EXPORT int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig,
  249. size_t sig_len);
  250. /* Signing (old functions) */
  251. /* EVP_SignInit_ex configures |ctx|, which must already have been initialised,
  252. * for a fresh signing operation using the hash function |type|. It returns one
  253. * on success and zero otherwise.
  254. *
  255. * (In order to initialise |ctx|, either obtain it initialised with
  256. * |EVP_MD_CTX_create|, or use |EVP_MD_CTX_init|.) */
  257. OPENSSL_EXPORT int EVP_SignInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type,
  258. ENGINE *impl);
  259. /* EVP_SignInit is a deprecated version of |EVP_SignInit_ex|.
  260. *
  261. * TODO(fork): remove. */
  262. OPENSSL_EXPORT int EVP_SignInit(EVP_MD_CTX *ctx, const EVP_MD *type);
  263. /* EVP_SignUpdate appends |len| bytes from |data| to the data which will be
  264. * signed in |EVP_SignFinal|. */
  265. OPENSSL_EXPORT int EVP_SignUpdate(EVP_MD_CTX *ctx, const void *data,
  266. size_t len);
  267. /* EVP_SignFinal signs the data that has been included by one or more calls to
  268. * |EVP_SignUpdate|, using the key |pkey|, and writes it to |sig|. On entry,
  269. * |sig| must point to at least |EVP_PKEY_size(pkey)| bytes of space. The
  270. * actual size of the signature is written to |*out_sig_len|.
  271. *
  272. * It returns one on success and zero otherwise.
  273. *
  274. * It does not modify |ctx|, thus it's possible to continue to use |ctx| in
  275. * order to sign a longer message. */
  276. OPENSSL_EXPORT int EVP_SignFinal(const EVP_MD_CTX *ctx, uint8_t *sig,
  277. unsigned int *out_sig_len, EVP_PKEY *pkey);
  278. /* Verifying (old functions) */
  279. /* EVP_VerifyInit_ex configures |ctx|, which must already have been
  280. * initialised, for a fresh signature verification operation using the hash
  281. * function |type|. It returns one on success and zero otherwise.
  282. *
  283. * (In order to initialise |ctx|, either obtain it initialised with
  284. * |EVP_MD_CTX_create|, or use |EVP_MD_CTX_init|.) */
  285. OPENSSL_EXPORT int EVP_VerifyInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type,
  286. ENGINE *impl);
  287. /* EVP_VerifyInit is a deprecated version of |EVP_VerifyInit_ex|.
  288. *
  289. * TODO(fork): remove. */
  290. OPENSSL_EXPORT int EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type);
  291. /* EVP_VerifyUpdate appends |len| bytes from |data| to the data which will be
  292. * signed in |EVP_VerifyFinal|. */
  293. OPENSSL_EXPORT int EVP_VerifyUpdate(EVP_MD_CTX *ctx, const void *data,
  294. size_t len);
  295. /* EVP_VerifyFinal verifies that |sig_len| bytes of |sig| are a valid
  296. * signature, by |pkey|, for the data that has been included by one or more
  297. * calls to |EVP_VerifyUpdate|.
  298. *
  299. * It returns one on success and zero otherwise.
  300. *
  301. * It does not modify |ctx|, thus it's possible to continue to use |ctx| in
  302. * order to sign a longer message. */
  303. OPENSSL_EXPORT int EVP_VerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig,
  304. size_t sig_len, EVP_PKEY *pkey);
  305. /* Printing */
  306. /* EVP_PKEY_print_public prints a textual representation of the public key in
  307. * |pkey| to |out|. Returns one on success or zero otherwise. */
  308. OPENSSL_EXPORT int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
  309. int indent, ASN1_PCTX *pctx);
  310. /* EVP_PKEY_print_private prints a textual representation of the private key in
  311. * |pkey| to |out|. Returns one on success or zero otherwise. */
  312. OPENSSL_EXPORT int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
  313. int indent, ASN1_PCTX *pctx);
  314. /* EVP_PKEY_print_params prints a textual representation of the parameters in
  315. * |pkey| to |out|. Returns one on success or zero otherwise. */
  316. OPENSSL_EXPORT int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
  317. int indent, ASN1_PCTX *pctx);
  318. /* Password stretching.
  319. *
  320. * Password stretching functions take a low-entropy password and apply a slow
  321. * function that results in a key suitable for use in symmetric
  322. * cryptography. */
  323. /* PKCS5_PBKDF2_HMAC computes |iterations| iterations of PBKDF2 of |password|
  324. * and |salt|, using |digest|, and outputs |key_len| bytes to |out_key|. It
  325. * returns one on success and zero on error. */
  326. OPENSSL_EXPORT int PKCS5_PBKDF2_HMAC(const char *password, size_t password_len,
  327. const uint8_t *salt, size_t salt_len,
  328. unsigned iterations, const EVP_MD *digest,
  329. size_t key_len, uint8_t *out_key);
  330. /* PKCS5_PBKDF2_HMAC_SHA1 is the same as PKCS5_PBKDF2_HMAC, but with |digest|
  331. * fixed to |EVP_sha1|. */
  332. OPENSSL_EXPORT int PKCS5_PBKDF2_HMAC_SHA1(const char *password,
  333. size_t password_len, const uint8_t *salt,
  334. size_t salt_len, unsigned iterations,
  335. size_t key_len, uint8_t *out_key);
  336. /* Public key contexts.
  337. *
  338. * |EVP_PKEY_CTX| objects hold the context of an operation (e.g. signing or
  339. * encrypting) that uses a public key. */
  340. /* EVP_PKEY_CTX_new allocates a fresh |EVP_PKEY_CTX| for use with |pkey|. It
  341. * returns the context or NULL on error. */
  342. OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e);
  343. /* EVP_PKEY_CTX_new_id allocates a fresh |EVP_PKEY_CTX| for a key of type |id|
  344. * (e.g. |EVP_PKEY_HMAC|). This can be used for key generation where
  345. * |EVP_PKEY_CTX_new| can't be used because there isn't an |EVP_PKEY| to pass
  346. * it. It returns the context or NULL on error. */
  347. OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e);
  348. /* EVP_PKEY_CTX_free frees |ctx| and the data it owns. */
  349. OPENSSL_EXPORT void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx);
  350. /* EVP_PKEY_CTX_dup allocates a fresh |EVP_PKEY_CTX| and sets it equal to the
  351. * state of |ctx|. It returns the fresh |EVP_PKEY_CTX| or NULL on error. */
  352. OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *ctx);
  353. /* EVP_PKEY_CTX_get0_pkey returns the |EVP_PKEY| associated with |ctx|. */
  354. OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_CTX_get0_pkey(EVP_PKEY_CTX *ctx);
  355. /* EVP_PKEY_sign_init initialises an |EVP_PKEY_CTX| for a signing operation. It
  356. * should be called before |EVP_PKEY_sign|.
  357. *
  358. * It returns one on success or zero on error. */
  359. OPENSSL_EXPORT int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx);
  360. /* EVP_PKEY_sign signs |data_len| bytes from |data| using |ctx|. If |sig| is
  361. * NULL, the maximum size of the signature is written to
  362. * |out_sig_len|. Otherwise, |*sig_len| must contain the number of bytes of
  363. * space available at |sig|. If sufficient, the signature will be written to
  364. * |sig| and |*sig_len| updated with the true length.
  365. *
  366. * WARNING: Setting |sig| to NULL only gives the maximum size of the
  367. * signature. The actual signature may be smaller.
  368. *
  369. * It returns one on success or zero on error. (Note: this differs from
  370. * OpenSSL, which can also return negative values to indicate an error. ) */
  371. OPENSSL_EXPORT int EVP_PKEY_sign(EVP_PKEY_CTX *ctx, uint8_t *sig,
  372. size_t *sig_len, const uint8_t *data,
  373. size_t data_len);
  374. /* EVP_PKEY_verify_init initialises an |EVP_PKEY_CTX| for a signature
  375. * verification operation. It should be called before |EVP_PKEY_verify|.
  376. *
  377. * It returns one on success or zero on error. */
  378. OPENSSL_EXPORT int EVP_PKEY_verify_init(EVP_PKEY_CTX *ctx);
  379. /* EVP_PKEY_verify verifies that |sig_len| bytes from |sig| are a valid signature
  380. * for |data|.
  381. *
  382. * It returns one on success or zero on error. */
  383. OPENSSL_EXPORT int EVP_PKEY_verify(EVP_PKEY_CTX *ctx, const uint8_t *sig,
  384. size_t sig_len, const uint8_t *data,
  385. size_t data_len);
  386. /* EVP_PKEY_encrypt_init initialises an |EVP_PKEY_CTX| for an encryption
  387. * operation. It should be called before |EVP_PKEY_encrypt|.
  388. *
  389. * It returns one on success or zero on error. */
  390. OPENSSL_EXPORT int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx);
  391. /* EVP_PKEY_encrypt encrypts |in_len| bytes from |in|. If |out| is NULL, the
  392. * maximum size of the ciphertext is written to |out_len|. Otherwise, |*out_len|
  393. * must contain the number of bytes of space available at |out|. If sufficient,
  394. * the ciphertext will be written to |out| and |*out_len| updated with the true
  395. * length.
  396. *
  397. * WARNING: Setting |out| to NULL only gives the maximum size of the
  398. * ciphertext. The actual ciphertext may be smaller.
  399. *
  400. * It returns one on success or zero on error. */
  401. OPENSSL_EXPORT int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, uint8_t *out,
  402. size_t *out_len, const uint8_t *in,
  403. size_t in_len);
  404. /* EVP_PKEY_decrypt_init initialises an |EVP_PKEY_CTX| for a decryption
  405. * operation. It should be called before |EVP_PKEY_decrypt|.
  406. *
  407. * It returns one on success or zero on error. */
  408. OPENSSL_EXPORT int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx);
  409. /* EVP_PKEY_decrypt decrypts |in_len| bytes from |in|. If |out| is NULL, the
  410. * maximum size of the plaintext is written to |out_len|. Otherwise, |*out_len|
  411. * must contain the number of bytes of space available at |out|. If sufficient,
  412. * the ciphertext will be written to |out| and |*out_len| updated with the true
  413. * length.
  414. *
  415. * WARNING: Setting |out| to NULL only gives the maximum size of the
  416. * plaintext. The actual plaintext may be smaller.
  417. *
  418. * It returns one on success or zero on error. */
  419. OPENSSL_EXPORT int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, uint8_t *out,
  420. size_t *out_len, const uint8_t *in,
  421. size_t in_len);
  422. /* EVP_PKEY_verify_recover_init initialises an |EVP_PKEY_CTX| for a public-key
  423. * decryption operation. It should be called before |EVP_PKEY_verify_recover|.
  424. *
  425. * Public-key decryption is a very obscure operation that is only implemented
  426. * by RSA keys. It is effectively a signature verification operation that
  427. * returns the signed message directly. It is almost certainly not what you
  428. * want.
  429. *
  430. * It returns one on success or zero on error. */
  431. OPENSSL_EXPORT int EVP_PKEY_verify_recover_init(EVP_PKEY_CTX *ctx);
  432. /* EVP_PKEY_verify_recover decrypts |sig_len| bytes from |sig|. If |out| is
  433. * NULL, the maximum size of the plaintext is written to |out_len|. Otherwise,
  434. * |*out_len| must contain the number of bytes of space available at |out|. If
  435. * sufficient, the ciphertext will be written to |out| and |*out_len| updated
  436. * with the true length.
  437. *
  438. * WARNING: Setting |out| to NULL only gives the maximum size of the
  439. * plaintext. The actual plaintext may be smaller.
  440. *
  441. * See the warning about this operation in |EVP_PKEY_verify_recover_init|. It
  442. * is probably not what you want.
  443. *
  444. * It returns one on success or zero on error. */
  445. OPENSSL_EXPORT int EVP_PKEY_verify_recover(EVP_PKEY_CTX *ctx, uint8_t *out,
  446. size_t *out_len, const uint8_t *sig,
  447. size_t siglen);
  448. /* EVP_PKEY_derive_init initialises an |EVP_PKEY_CTX| for a key derivation
  449. * operation. It should be called before |EVP_PKEY_derive_set_peer| and
  450. * |EVP_PKEY_derive|.
  451. *
  452. * It returns one on success or zero on error. */
  453. OPENSSL_EXPORT int EVP_PKEY_derive_init(EVP_PKEY_CTX *ctx);
  454. /* EVP_PKEY_derive_set_peer sets the peer's key to be used for key derivation
  455. * by |ctx| to |peer|. It should be called after |EVP_PKEY_derive_init|. (For
  456. * example, this is used to set the peer's key in (EC)DH.) It returns one on
  457. * success and zero on error. */
  458. OPENSSL_EXPORT int EVP_PKEY_derive_set_peer(EVP_PKEY_CTX *ctx, EVP_PKEY *peer);
  459. /* EVP_PKEY_derive derives a shared key between the two keys configured in
  460. * |ctx|. If |key| is non-NULL then, on entry, |out_key_len| must contain the
  461. * amount of space at |key|. If sufficient then the shared key will be written
  462. * to |key| and |*out_key_len| will be set to the length. If |key| is NULL then
  463. * |out_key_len| will be set to the maximum length.
  464. *
  465. * WARNING: Setting |out| to NULL only gives the maximum size of the key. The
  466. * actual key may be smaller.
  467. *
  468. * It returns one on success and zero on error. */
  469. OPENSSL_EXPORT int EVP_PKEY_derive(EVP_PKEY_CTX *ctx, uint8_t *key,
  470. size_t *out_key_len);
  471. /* EVP_PKEY_keygen_init initialises an |EVP_PKEY_CTX| for a key generation
  472. * operation. It should be called before |EVP_PKEY_keygen|.
  473. *
  474. * It returns one on success or zero on error. */
  475. OPENSSL_EXPORT int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx);
  476. /* EVP_PKEY_keygen performs a key generation operation using the values from
  477. * |ctx| and sets |*ppkey| to a fresh |EVP_PKEY| containing the resulting key.
  478. * It returns one on success or zero on error. */
  479. OPENSSL_EXPORT int EVP_PKEY_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey);
  480. /* Generic control functions. */
  481. /* EVP_PKEY_CTX_set_signature_md sets |md| as the digest to be used in a
  482. * signature operation. It returns one on success or zero on error. */
  483. OPENSSL_EXPORT int EVP_PKEY_CTX_set_signature_md(EVP_PKEY_CTX *ctx,
  484. const EVP_MD *md);
  485. /* EVP_PKEY_CTX_get_signature_md sets |*out_md| to the digest to be used in a
  486. * signature operation. It returns one on success or zero on error. */
  487. OPENSSL_EXPORT int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx,
  488. const EVP_MD **out_md);
  489. /* RSA specific control functions. */
  490. /* EVP_PKEY_CTX_set_rsa_padding sets the padding type to use. It should be one
  491. * of the |RSA_*_PADDING| values. Returns one on success or zero on error. */
  492. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_padding(EVP_PKEY_CTX *ctx, int padding);
  493. /* EVP_PKEY_CTX_get_rsa_padding sets |*out_padding| to the current padding
  494. * value, which is one of the |RSA_*_PADDING| values. Returns one on success or
  495. * zero on error. */
  496. OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_padding(EVP_PKEY_CTX *ctx,
  497. int *out_padding);
  498. /* EVP_PKEY_CTX_set_rsa_pss_saltlen sets the length of the salt in a PSS-padded
  499. * signature. A value of -1 cause the salt to be the same length as the digest
  500. * in the signature. A value of -2 causes the salt to be the maximum length
  501. * that will fit. Otherwise the value gives the size of the salt in bytes.
  502. *
  503. * Returns one on success or zero on error. */
  504. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_pss_saltlen(EVP_PKEY_CTX *ctx,
  505. int salt_len);
  506. /* EVP_PKEY_CTX_get_rsa_pss_saltlen sets |*out_salt_len| to the salt length of
  507. * a PSS-padded signature. See the documentation for
  508. * |EVP_PKEY_CTX_set_rsa_pss_saltlen| for details of the special values that it
  509. * can take.
  510. *
  511. * Returns one on success or zero on error. */
  512. OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_pss_saltlen(EVP_PKEY_CTX *ctx,
  513. int *out_salt_len);
  514. /* EVP_PKEY_CTX_set_rsa_keygen_bits sets the size of the desired RSA modulus,
  515. * in bits, for key generation. Returns one on success or zero on
  516. * error. */
  517. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_keygen_bits(EVP_PKEY_CTX *ctx,
  518. int bits);
  519. /* EVP_PKEY_CTX_set_rsa_keygen_pubexp sets |e| as the public exponent for key
  520. * generation. Returns one on success or zero on error. */
  521. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx,
  522. BIGNUM *e);
  523. /* EVP_PKEY_CTX_set_rsa_oaep_md sets |md| as the digest used in OAEP padding.
  524. * Returns one on success or zero on error. */
  525. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_oaep_md(EVP_PKEY_CTX *ctx,
  526. const EVP_MD *md);
  527. /* EVP_PKEY_CTX_get_rsa_oaep_md sets |*out_md| to the digest function used in
  528. * OAEP padding. Returns one on success or zero on error. */
  529. OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_oaep_md(EVP_PKEY_CTX *ctx,
  530. const EVP_MD **out_md);
  531. /* EVP_PKEY_CTX_set_rsa_mgf1_md sets |md| as the digest used in MGF1. Returns
  532. * one on success or zero on error. */
  533. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_mgf1_md(EVP_PKEY_CTX *ctx,
  534. const EVP_MD *md);
  535. /* EVP_PKEY_CTX_get_rsa_mgf1_md sets |*out_md| to the digest function used in
  536. * MGF1. Returns one on success or zero on error. */
  537. OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_mgf1_md(EVP_PKEY_CTX *ctx,
  538. const EVP_MD **out_md);
  539. /* EVP_PKEY_CTX_set0_rsa_oaep_label sets |label_len| bytes from |label| as the
  540. * label used in OAEP. DANGER: On success, this call takes ownership of |label|
  541. * and will call |OPENSSL_free| on it when |ctx| is destroyed.
  542. *
  543. * Returns one on success or zero on error. */
  544. OPENSSL_EXPORT int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx,
  545. uint8_t *label,
  546. size_t label_len);
  547. /* EVP_PKEY_CTX_get0_rsa_oaep_label sets |*out_label| to point to the internal
  548. * buffer containing the OAEP label (which may be NULL) and returns the length
  549. * of the label or a negative value on error.
  550. *
  551. * WARNING: the return value differs from the usual return value convention. */
  552. OPENSSL_EXPORT int EVP_PKEY_CTX_get0_rsa_oaep_label(EVP_PKEY_CTX *ctx,
  553. const uint8_t **out_label);
  554. /* Deprecated functions. */
  555. /* EVP_PKEY_DH is defined for compatibility, but it is impossible to create an
  556. * |EVP_PKEY| of that type. */
  557. #define EVP_PKEY_DH NID_dhKeyAgreement
  558. /* EVP_PKEY_RSA2 was historically an alternate form for RSA public keys (OID
  559. * 2.5.8.1.1), but is no longer accepted. */
  560. #define EVP_PKEY_RSA2 NID_rsa
  561. /* OpenSSL_add_all_algorithms does nothing. */
  562. OPENSSL_EXPORT void OpenSSL_add_all_algorithms(void);
  563. /* OpenSSL_add_all_ciphers does nothing. */
  564. OPENSSL_EXPORT void OpenSSL_add_all_ciphers(void);
  565. /* OpenSSL_add_all_digests does nothing. */
  566. OPENSSL_EXPORT void OpenSSL_add_all_digests(void);
  567. /* EVP_cleanup does nothing. */
  568. OPENSSL_EXPORT void EVP_cleanup(void);
  569. OPENSSL_EXPORT void EVP_CIPHER_do_all_sorted(
  570. void (*callback)(const EVP_CIPHER *cipher, const char *name,
  571. const char *unused, void *arg),
  572. void *arg);
  573. OPENSSL_EXPORT void EVP_MD_do_all_sorted(void (*callback)(const EVP_MD *cipher,
  574. const char *name,
  575. const char *unused,
  576. void *arg),
  577. void *arg);
  578. /* i2d_PrivateKey marshals a private key from |key| to an ASN.1, DER
  579. * structure. If |outp| is not NULL then the result is written to |*outp| and
  580. * |*outp| is advanced just past the output. It returns the number of bytes in
  581. * the result, whether written or not, or a negative value on error.
  582. *
  583. * RSA keys are serialized as a DER-encoded RSAPublicKey (RFC 3447) structure.
  584. * EC keys are serialized as a DER-encoded ECPrivateKey (RFC 5915) structure.
  585. *
  586. * Use |RSA_marshal_private_key| or |EC_marshal_private_key| instead. */
  587. OPENSSL_EXPORT int i2d_PrivateKey(const EVP_PKEY *key, uint8_t **outp);
  588. /* i2d_PublicKey marshals a public key from |key| to a type-specific format.
  589. * If |outp| is not NULL then the result is written to |*outp| and
  590. * |*outp| is advanced just past the output. It returns the number of bytes in
  591. * the result, whether written or not, or a negative value on error.
  592. *
  593. * RSA keys are serialized as a DER-encoded RSAPublicKey (RFC 3447) structure.
  594. * EC keys are serialized as an EC point per SEC 1.
  595. *
  596. * Use |RSA_marshal_public_key| or |EC_POINT_point2cbb| instead. */
  597. OPENSSL_EXPORT int i2d_PublicKey(EVP_PKEY *key, uint8_t **outp);
  598. /* d2i_PrivateKey parses an ASN.1, DER-encoded, private key from |len| bytes at
  599. * |*inp|. If |out| is not NULL then, on exit, a pointer to the result is in
  600. * |*out|. If |*out| is already non-NULL on entry then the result is written
  601. * directly into |*out|, otherwise a fresh |EVP_PKEY| is allocated. However,
  602. * one should not depend on writing into |*out| because this behaviour is
  603. * likely to change in the future. On successful exit, |*inp| is advanced past
  604. * the DER structure. It returns the result or NULL on error.
  605. *
  606. * This function tries to detect one of several formats. Instead, use
  607. * |EVP_parse_private_key| for a PrivateKeyInfo, |RSA_parse_private_key| for an
  608. * RSAPrivateKey, and |EC_parse_private_key| for an ECPrivateKey. */
  609. OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **out,
  610. const uint8_t **inp, long len);
  611. /* d2i_AutoPrivateKey acts the same as |d2i_PrivateKey|, but detects the type
  612. * of the private key.
  613. *
  614. * This function tries to detect one of several formats. Instead, use
  615. * |EVP_parse_private_key| for a PrivateKeyInfo, |RSA_parse_private_key| for an
  616. * RSAPrivateKey, and |EC_parse_private_key| for an ECPrivateKey. */
  617. OPENSSL_EXPORT EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **out, const uint8_t **inp,
  618. long len);
  619. /* Private functions */
  620. /* EVP_PKEY_asn1_find returns the ASN.1 method table for the given |nid|, which
  621. * should be one of the |EVP_PKEY_*| values. It returns NULL if |nid| is
  622. * unknown. */
  623. OPENSSL_EXPORT const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pengine,
  624. int nid);
  625. /* EVP_PKEY_asn1_find_str returns an |EVP_PKEY_ASN1_METHOD| by matching values
  626. * of the |len| bytes at |name|. For example, if name equals "EC" then it will
  627. * return an ECC method. The |pengine| argument is ignored.
  628. *
  629. * TODO(fork): move to PEM? */
  630. OPENSSL_EXPORT const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(
  631. ENGINE **pengine, const char *name, size_t len);
  632. struct evp_pkey_st {
  633. CRYPTO_refcount_t references;
  634. /* type contains one of the EVP_PKEY_* values or NID_undef and determines
  635. * which element (if any) of the |pkey| union is valid. */
  636. int type;
  637. union {
  638. char *ptr;
  639. RSA *rsa;
  640. DSA *dsa;
  641. DH *dh;
  642. EC_KEY *ec;
  643. } pkey;
  644. /* ameth contains a pointer to a method table that contains many ASN.1
  645. * methods for the key type. */
  646. const EVP_PKEY_ASN1_METHOD *ameth;
  647. } /* EVP_PKEY */;
  648. #if defined(__cplusplus)
  649. } /* extern C */
  650. #endif
  651. #define EVP_R_BUFFER_TOO_SMALL 100
  652. #define EVP_R_COMMAND_NOT_SUPPORTED 101
  653. #define EVP_R_DIFFERENT_KEY_TYPES 104
  654. #define EVP_R_DIFFERENT_PARAMETERS 105
  655. #define EVP_R_EXPECTING_AN_EC_KEY_KEY 107
  656. #define EVP_R_EXPECTING_A_DH_KEY 109
  657. #define EVP_R_EXPECTING_A_DSA_KEY 110
  658. #define EVP_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE 111
  659. #define EVP_R_INVALID_CURVE 112
  660. #define EVP_R_INVALID_DIGEST_LENGTH 113
  661. #define EVP_R_INVALID_DIGEST_TYPE 114
  662. #define EVP_R_INVALID_KEYBITS 115
  663. #define EVP_R_INVALID_MGF1_MD 116
  664. #define EVP_R_INVALID_PADDING_MODE 118
  665. #define EVP_R_INVALID_PSS_PARAMETERS 119
  666. #define EVP_R_INVALID_SALT_LENGTH 121
  667. #define EVP_R_INVALID_TRAILER 122
  668. #define EVP_R_KEYS_NOT_SET 123
  669. #define EVP_R_MISSING_PARAMETERS 124
  670. #define EVP_R_NO_DEFAULT_DIGEST 125
  671. #define EVP_R_NO_KEY_SET 126
  672. #define EVP_R_NO_MDC2_SUPPORT 127
  673. #define EVP_R_NO_NID_FOR_CURVE 128
  674. #define EVP_R_NO_OPERATION_SET 129
  675. #define EVP_R_NO_PARAMETERS_SET 130
  676. #define EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 131
  677. #define EVP_R_OPERATON_NOT_INITIALIZED 132
  678. #define EVP_R_UNKNOWN_DIGEST 133
  679. #define EVP_R_UNKNOWN_MASK_DIGEST 134
  680. #define EVP_R_UNSUPPORTED_ALGORITHM 138
  681. #define EVP_R_UNSUPPORTED_MASK_ALGORITHM 139
  682. #define EVP_R_UNSUPPORTED_MASK_PARAMETER 140
  683. #define EVP_R_EXPECTING_AN_RSA_KEY 141
  684. #define EVP_R_INVALID_OPERATION 142
  685. #define EVP_R_DECODE_ERROR 143
  686. #define EVP_R_INVALID_PSS_SALTLEN 144
  687. #define EVP_R_UNKNOWN_PUBLIC_KEY_TYPE 145
  688. #define EVP_R_CONTEXT_NOT_INITIALISED 146
  689. #define EVP_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 147
  690. #define EVP_R_WRONG_PUBLIC_KEY_TYPE 148
  691. #define EVP_R_UNKNOWN_SIGNATURE_ALGORITHM 149
  692. #define EVP_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 150
  693. #define EVP_R_BN_DECODE_ERROR 151
  694. #define EVP_R_PARAMETER_ENCODING_ERROR 152
  695. #define EVP_R_UNSUPPORTED_PUBLIC_KEY_TYPE 153
  696. #define EVP_R_UNSUPPORTED_SIGNATURE_TYPE 154
  697. #define EVP_R_ENCODE_ERROR 155
  698. #endif /* OPENSSL_HEADER_EVP_H */