You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

925 rivejä
41 KiB

  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/nid.h>
  69. #if defined(__cplusplus)
  70. extern "C" {
  71. #endif
  72. // EVP abstracts over public/private key algorithms.
  73. // Public key objects.
  74. //
  75. // An |EVP_PKEY| object represents a public or private key. A given object may
  76. // be used concurrently on multiple threads by non-mutating functions, provided
  77. // no other thread is concurrently calling a mutating function. Unless otherwise
  78. // documented, functions which take a |const| pointer are non-mutating and
  79. // functions which take a non-|const| pointer are mutating.
  80. // EVP_PKEY_new creates a new, empty public-key object and returns it or NULL
  81. // on allocation failure.
  82. OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_new(void);
  83. // EVP_PKEY_free frees all data referenced by |pkey| and then frees |pkey|
  84. // itself.
  85. OPENSSL_EXPORT void EVP_PKEY_free(EVP_PKEY *pkey);
  86. // EVP_PKEY_up_ref increments the reference count of |pkey| and returns one. It
  87. // does not mutate |pkey| for thread-safety purposes and may be used
  88. // concurrently.
  89. OPENSSL_EXPORT int EVP_PKEY_up_ref(EVP_PKEY *pkey);
  90. // EVP_PKEY_is_opaque returns one if |pkey| is opaque. Opaque keys are backed by
  91. // custom implementations which do not expose key material and parameters. It is
  92. // an error to attempt to duplicate, export, or compare an opaque key.
  93. OPENSSL_EXPORT int EVP_PKEY_is_opaque(const EVP_PKEY *pkey);
  94. // EVP_PKEY_cmp compares |a| and |b| and returns one if they are equal, zero if
  95. // not and a negative number on error.
  96. //
  97. // WARNING: this differs from the traditional return value of a "cmp"
  98. // function.
  99. OPENSSL_EXPORT int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
  100. // EVP_PKEY_copy_parameters sets the parameters of |to| to equal the parameters
  101. // of |from|. It returns one on success and zero on error.
  102. OPENSSL_EXPORT int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from);
  103. // EVP_PKEY_missing_parameters returns one if |pkey| is missing needed
  104. // parameters or zero if not, or if the algorithm doesn't take parameters.
  105. OPENSSL_EXPORT int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey);
  106. // EVP_PKEY_size returns the maximum size, in bytes, of a signature signed by
  107. // |pkey|. For an RSA key, this returns the number of bytes needed to represent
  108. // the modulus. For an EC key, this returns the maximum size of a DER-encoded
  109. // ECDSA signature.
  110. OPENSSL_EXPORT int EVP_PKEY_size(const EVP_PKEY *pkey);
  111. // EVP_PKEY_bits returns the "size", in bits, of |pkey|. For an RSA key, this
  112. // returns the bit length of the modulus. For an EC key, this returns the bit
  113. // length of the group order.
  114. OPENSSL_EXPORT int EVP_PKEY_bits(const EVP_PKEY *pkey);
  115. // EVP_PKEY_id returns the type of |pkey|, which is one of the |EVP_PKEY_*|
  116. // values.
  117. OPENSSL_EXPORT int EVP_PKEY_id(const EVP_PKEY *pkey);
  118. // EVP_PKEY_type returns |nid| if |nid| is a known key type and |NID_undef|
  119. // otherwise.
  120. OPENSSL_EXPORT int EVP_PKEY_type(int nid);
  121. // Getting and setting concrete public key types.
  122. //
  123. // The following functions get and set the underlying public key in an
  124. // |EVP_PKEY| object. The |set1| functions take an additional reference to the
  125. // underlying key and return one on success or zero if |key| is NULL. The
  126. // |assign| functions adopt the caller's reference and return one on success or
  127. // zero if |key| is NULL. The |get1| functions return a fresh reference to the
  128. // underlying object or NULL if |pkey| is not of the correct type. The |get0|
  129. // functions behave the same but return a non-owning pointer.
  130. //
  131. // The |get0| and |get1| functions take |const| pointers and are thus
  132. // non-mutating for thread-safety purposes, but mutating functions on the
  133. // returned lower-level objects are considered to also mutate the |EVP_PKEY| and
  134. // may not be called concurrently with other operations on the |EVP_PKEY|.
  135. OPENSSL_EXPORT int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key);
  136. OPENSSL_EXPORT int EVP_PKEY_assign_RSA(EVP_PKEY *pkey, RSA *key);
  137. OPENSSL_EXPORT RSA *EVP_PKEY_get0_RSA(const EVP_PKEY *pkey);
  138. OPENSSL_EXPORT RSA *EVP_PKEY_get1_RSA(const EVP_PKEY *pkey);
  139. OPENSSL_EXPORT int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key);
  140. OPENSSL_EXPORT int EVP_PKEY_assign_DSA(EVP_PKEY *pkey, DSA *key);
  141. OPENSSL_EXPORT DSA *EVP_PKEY_get0_DSA(const EVP_PKEY *pkey);
  142. OPENSSL_EXPORT DSA *EVP_PKEY_get1_DSA(const EVP_PKEY *pkey);
  143. OPENSSL_EXPORT int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key);
  144. OPENSSL_EXPORT int EVP_PKEY_assign_EC_KEY(EVP_PKEY *pkey, EC_KEY *key);
  145. OPENSSL_EXPORT EC_KEY *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey);
  146. OPENSSL_EXPORT EC_KEY *EVP_PKEY_get1_EC_KEY(const EVP_PKEY *pkey);
  147. // EVP_PKEY_new_ed25519_public returns a newly allocated |EVP_PKEY| wrapping an
  148. // Ed25519 public key, or NULL on allocation error.
  149. OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_new_ed25519_public(
  150. const uint8_t public_key[32]);
  151. // EVP_PKEY_new_ed25519_private returns a newly allocated |EVP_PKEY| wrapping an
  152. // Ed25519 private key, or NULL on allocation error.
  153. OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_new_ed25519_private(
  154. const uint8_t private_key[64]);
  155. #define EVP_PKEY_NONE NID_undef
  156. #define EVP_PKEY_RSA NID_rsaEncryption
  157. #define EVP_PKEY_RSA_PSS NID_rsassaPss
  158. #define EVP_PKEY_DSA NID_dsa
  159. #define EVP_PKEY_EC NID_X9_62_id_ecPublicKey
  160. #define EVP_PKEY_ED25519 NID_ED25519
  161. // EVP_PKEY_assign sets the underlying key of |pkey| to |key|, which must be of
  162. // the given type. It returns one if successful or zero if the |type| argument
  163. // is not one of the |EVP_PKEY_*| values or if |key| is NULL.
  164. OPENSSL_EXPORT int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key);
  165. // EVP_PKEY_set_type sets the type of |pkey| to |type|. It returns one if
  166. // successful or zero if the |type| argument is not one of the |EVP_PKEY_*|
  167. // values. If |pkey| is NULL, it simply reports whether the type is known.
  168. OPENSSL_EXPORT int EVP_PKEY_set_type(EVP_PKEY *pkey, int type);
  169. // EVP_PKEY_cmp_parameters compares the parameters of |a| and |b|. It returns
  170. // one if they match, zero if not, or a negative number of on error.
  171. //
  172. // WARNING: the return value differs from the usual return value convention.
  173. OPENSSL_EXPORT int EVP_PKEY_cmp_parameters(const EVP_PKEY *a,
  174. const EVP_PKEY *b);
  175. // ASN.1 functions
  176. // EVP_parse_public_key decodes a DER-encoded SubjectPublicKeyInfo structure
  177. // (RFC 5280) from |cbs| and advances |cbs|. It returns a newly-allocated
  178. // |EVP_PKEY| or NULL on error. If the key is an EC key, the curve is guaranteed
  179. // to be set.
  180. //
  181. // The caller must check the type of the parsed public key to ensure it is
  182. // suitable and validate other desired key properties such as RSA modulus size
  183. // or EC curve.
  184. OPENSSL_EXPORT EVP_PKEY *EVP_parse_public_key(CBS *cbs);
  185. // EVP_marshal_public_key marshals |key| as a DER-encoded SubjectPublicKeyInfo
  186. // structure (RFC 5280) and appends the result to |cbb|. It returns one on
  187. // success and zero on error.
  188. OPENSSL_EXPORT int EVP_marshal_public_key(CBB *cbb, const EVP_PKEY *key);
  189. // EVP_parse_private_key decodes a DER-encoded PrivateKeyInfo structure (RFC
  190. // 5208) from |cbs| and advances |cbs|. It returns a newly-allocated |EVP_PKEY|
  191. // or NULL on error.
  192. //
  193. // The caller must check the type of the parsed private key to ensure it is
  194. // suitable and validate other desired key properties such as RSA modulus size
  195. // or EC curve.
  196. //
  197. // A PrivateKeyInfo ends with an optional set of attributes. These are not
  198. // processed and so this function will silently ignore any trailing data in the
  199. // structure.
  200. OPENSSL_EXPORT EVP_PKEY *EVP_parse_private_key(CBS *cbs);
  201. // EVP_marshal_private_key marshals |key| as a DER-encoded PrivateKeyInfo
  202. // structure (RFC 5208) and appends the result to |cbb|. It returns one on
  203. // success and zero on error.
  204. OPENSSL_EXPORT int EVP_marshal_private_key(CBB *cbb, const EVP_PKEY *key);
  205. // Signing
  206. // EVP_DigestSignInit sets up |ctx| for a signing operation with |type| and
  207. // |pkey|. The |ctx| argument must have been initialised with
  208. // |EVP_MD_CTX_init|. If |pctx| is not NULL, the |EVP_PKEY_CTX| of the signing
  209. // operation will be written to |*pctx|; this can be used to set alternative
  210. // signing options.
  211. //
  212. // For single-shot signing algorithms which do not use a pre-hash, such as
  213. // Ed25519, |type| should be NULL. The |EVP_MD_CTX| itself is unused but is
  214. // present so the API is uniform. See |EVP_DigestSign|.
  215. //
  216. // This function does not mutate |pkey| for thread-safety purposes and may be
  217. // used concurrently with other non-mutating functions on |pkey|.
  218. //
  219. // It returns one on success, or zero on error.
  220. OPENSSL_EXPORT int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
  221. const EVP_MD *type, ENGINE *e,
  222. EVP_PKEY *pkey);
  223. // EVP_DigestSignUpdate appends |len| bytes from |data| to the data which will
  224. // be signed in |EVP_DigestSignFinal|. It returns one.
  225. //
  226. // This function performs a streaming signing operation and will fail for
  227. // signature algorithms which do not support this. Use |EVP_DigestSign| for a
  228. // single-shot operation.
  229. OPENSSL_EXPORT int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *data,
  230. size_t len);
  231. // EVP_DigestSignFinal signs the data that has been included by one or more
  232. // calls to |EVP_DigestSignUpdate|. If |out_sig| is NULL then |*out_sig_len| is
  233. // set to the maximum number of output bytes. Otherwise, on entry,
  234. // |*out_sig_len| must contain the length of the |out_sig| buffer. If the call
  235. // is successful, the signature is written to |out_sig| and |*out_sig_len| is
  236. // set to its length.
  237. //
  238. // This function performs a streaming signing operation and will fail for
  239. // signature algorithms which do not support this. Use |EVP_DigestSign| for a
  240. // single-shot operation.
  241. //
  242. // It returns one on success, or zero on error.
  243. OPENSSL_EXPORT int EVP_DigestSignFinal(EVP_MD_CTX *ctx, uint8_t *out_sig,
  244. size_t *out_sig_len);
  245. // EVP_DigestSign signs |data_len| bytes from |data| using |ctx|. If |out_sig|
  246. // is NULL then |*out_sig_len| is set to the maximum number of output
  247. // bytes. Otherwise, on entry, |*out_sig_len| must contain the length of the
  248. // |out_sig| buffer. If the call is successful, the signature is written to
  249. // |out_sig| and |*out_sig_len| is set to its length.
  250. //
  251. // It returns one on success and zero on error.
  252. OPENSSL_EXPORT int EVP_DigestSign(EVP_MD_CTX *ctx, uint8_t *out_sig,
  253. size_t *out_sig_len, const uint8_t *data,
  254. size_t data_len);
  255. // Verifying
  256. // EVP_DigestVerifyInit sets up |ctx| for a signature verification operation
  257. // with |type| and |pkey|. The |ctx| argument must have been initialised with
  258. // |EVP_MD_CTX_init|. If |pctx| is not NULL, the |EVP_PKEY_CTX| of the signing
  259. // operation will be written to |*pctx|; this can be used to set alternative
  260. // signing options.
  261. //
  262. // For single-shot signing algorithms which do not use a pre-hash, such as
  263. // Ed25519, |type| should be NULL. The |EVP_MD_CTX| itself is unused but is
  264. // present so the API is uniform. See |EVP_DigestVerify|.
  265. //
  266. // This function does not mutate |pkey| for thread-safety purposes and may be
  267. // used concurrently with other non-mutating functions on |pkey|.
  268. //
  269. // It returns one on success, or zero on error.
  270. OPENSSL_EXPORT int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
  271. const EVP_MD *type, ENGINE *e,
  272. EVP_PKEY *pkey);
  273. // EVP_DigestVerifyUpdate appends |len| bytes from |data| to the data which
  274. // will be verified by |EVP_DigestVerifyFinal|. It returns one.
  275. //
  276. // This function performs streaming signature verification and will fail for
  277. // signature algorithms which do not support this. Use |EVP_PKEY_verify_message|
  278. // for a single-shot verification.
  279. OPENSSL_EXPORT int EVP_DigestVerifyUpdate(EVP_MD_CTX *ctx, const void *data,
  280. size_t len);
  281. // EVP_DigestVerifyFinal verifies that |sig_len| bytes of |sig| are a valid
  282. // signature for the data that has been included by one or more calls to
  283. // |EVP_DigestVerifyUpdate|. It returns one on success and zero otherwise.
  284. //
  285. // This function performs streaming signature verification and will fail for
  286. // signature algorithms which do not support this. Use |EVP_PKEY_verify_message|
  287. // for a single-shot verification.
  288. OPENSSL_EXPORT int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig,
  289. size_t sig_len);
  290. // EVP_DigestVerify verifies that |sig_len| bytes from |sig| are a valid
  291. // signature for |data|. It returns one on success or zero on error.
  292. OPENSSL_EXPORT int EVP_DigestVerify(EVP_MD_CTX *ctx, const uint8_t *sig,
  293. size_t sig_len, const uint8_t *data,
  294. size_t len);
  295. // Signing (old functions)
  296. // EVP_SignInit_ex configures |ctx|, which must already have been initialised,
  297. // for a fresh signing operation using the hash function |type|. It returns one
  298. // on success and zero otherwise.
  299. //
  300. // (In order to initialise |ctx|, either obtain it initialised with
  301. // |EVP_MD_CTX_create|, or use |EVP_MD_CTX_init|.)
  302. OPENSSL_EXPORT int EVP_SignInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type,
  303. ENGINE *impl);
  304. // EVP_SignInit is a deprecated version of |EVP_SignInit_ex|.
  305. //
  306. // TODO(fork): remove.
  307. OPENSSL_EXPORT int EVP_SignInit(EVP_MD_CTX *ctx, const EVP_MD *type);
  308. // EVP_SignUpdate appends |len| bytes from |data| to the data which will be
  309. // signed in |EVP_SignFinal|.
  310. OPENSSL_EXPORT int EVP_SignUpdate(EVP_MD_CTX *ctx, const void *data,
  311. size_t len);
  312. // EVP_SignFinal signs the data that has been included by one or more calls to
  313. // |EVP_SignUpdate|, using the key |pkey|, and writes it to |sig|. On entry,
  314. // |sig| must point to at least |EVP_PKEY_size(pkey)| bytes of space. The
  315. // actual size of the signature is written to |*out_sig_len|.
  316. //
  317. // It returns one on success and zero otherwise.
  318. //
  319. // It does not modify |ctx|, thus it's possible to continue to use |ctx| in
  320. // order to sign a longer message. It also does not mutate |pkey| for
  321. // thread-safety purposes and may be used concurrently with other non-mutating
  322. // functions on |pkey|.
  323. OPENSSL_EXPORT int EVP_SignFinal(const EVP_MD_CTX *ctx, uint8_t *sig,
  324. unsigned int *out_sig_len, EVP_PKEY *pkey);
  325. // Verifying (old functions)
  326. // EVP_VerifyInit_ex configures |ctx|, which must already have been
  327. // initialised, for a fresh signature verification operation using the hash
  328. // function |type|. It returns one on success and zero otherwise.
  329. //
  330. // (In order to initialise |ctx|, either obtain it initialised with
  331. // |EVP_MD_CTX_create|, or use |EVP_MD_CTX_init|.)
  332. OPENSSL_EXPORT int EVP_VerifyInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type,
  333. ENGINE *impl);
  334. // EVP_VerifyInit is a deprecated version of |EVP_VerifyInit_ex|.
  335. //
  336. // TODO(fork): remove.
  337. OPENSSL_EXPORT int EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type);
  338. // EVP_VerifyUpdate appends |len| bytes from |data| to the data which will be
  339. // signed in |EVP_VerifyFinal|.
  340. OPENSSL_EXPORT int EVP_VerifyUpdate(EVP_MD_CTX *ctx, const void *data,
  341. size_t len);
  342. // EVP_VerifyFinal verifies that |sig_len| bytes of |sig| are a valid
  343. // signature, by |pkey|, for the data that has been included by one or more
  344. // calls to |EVP_VerifyUpdate|.
  345. //
  346. // It returns one on success and zero otherwise.
  347. //
  348. // It does not modify |ctx|, thus it's possible to continue to use |ctx| in
  349. // order to verify a longer message. It also does not mutate |pkey| for
  350. // thread-safety purposes and may be used concurrently with other non-mutating
  351. // functions on |pkey|.
  352. OPENSSL_EXPORT int EVP_VerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig,
  353. size_t sig_len, EVP_PKEY *pkey);
  354. // Printing
  355. // EVP_PKEY_print_public prints a textual representation of the public key in
  356. // |pkey| to |out|. Returns one on success or zero otherwise.
  357. OPENSSL_EXPORT int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
  358. int indent, ASN1_PCTX *pctx);
  359. // EVP_PKEY_print_private prints a textual representation of the private key in
  360. // |pkey| to |out|. Returns one on success or zero otherwise.
  361. OPENSSL_EXPORT int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
  362. int indent, ASN1_PCTX *pctx);
  363. // EVP_PKEY_print_params prints a textual representation of the parameters in
  364. // |pkey| to |out|. Returns one on success or zero otherwise.
  365. OPENSSL_EXPORT int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
  366. int indent, ASN1_PCTX *pctx);
  367. // Password stretching.
  368. //
  369. // Password stretching functions take a low-entropy password and apply a slow
  370. // function that results in a key suitable for use in symmetric
  371. // cryptography.
  372. // PKCS5_PBKDF2_HMAC computes |iterations| iterations of PBKDF2 of |password|
  373. // and |salt|, using |digest|, and outputs |key_len| bytes to |out_key|. It
  374. // returns one on success and zero on allocation failure or if iterations is 0.
  375. OPENSSL_EXPORT int PKCS5_PBKDF2_HMAC(const char *password, size_t password_len,
  376. const uint8_t *salt, size_t salt_len,
  377. unsigned iterations, const EVP_MD *digest,
  378. size_t key_len, uint8_t *out_key);
  379. // PKCS5_PBKDF2_HMAC_SHA1 is the same as PKCS5_PBKDF2_HMAC, but with |digest|
  380. // fixed to |EVP_sha1|.
  381. OPENSSL_EXPORT int PKCS5_PBKDF2_HMAC_SHA1(const char *password,
  382. size_t password_len,
  383. const uint8_t *salt, size_t salt_len,
  384. unsigned iterations, size_t key_len,
  385. uint8_t *out_key);
  386. // EVP_PBE_scrypt expands |password| into a secret key of length |key_len| using
  387. // scrypt, as described in RFC 7914, and writes the result to |out_key|. It
  388. // returns one on success and zero on allocation failure, if the memory required
  389. // for the operation exceeds |max_mem|, or if any of the parameters are invalid
  390. // as described below.
  391. //
  392. // |N|, |r|, and |p| are as described in RFC 7914 section 6. They determine the
  393. // cost of the operation. If |max_mem| is zero, a defult limit of 32MiB will be
  394. // used.
  395. //
  396. // The parameters are considered invalid under any of the following conditions:
  397. // - |r| or |p| are zero
  398. // - |p| > (2^30 - 1) / |r|
  399. // - |N| is not a power of two
  400. // - |N| > 2^32
  401. // - |N| > 2^(128 * |r| / 8)
  402. OPENSSL_EXPORT int EVP_PBE_scrypt(const char *password, size_t password_len,
  403. const uint8_t *salt, size_t salt_len,
  404. uint64_t N, uint64_t r, uint64_t p,
  405. size_t max_mem, uint8_t *out_key,
  406. size_t key_len);
  407. // Public key contexts.
  408. //
  409. // |EVP_PKEY_CTX| objects hold the context of an operation (e.g. signing or
  410. // encrypting) that uses a public key.
  411. // EVP_PKEY_CTX_new allocates a fresh |EVP_PKEY_CTX| for use with |pkey|. It
  412. // returns the context or NULL on error.
  413. OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e);
  414. // EVP_PKEY_CTX_new_id allocates a fresh |EVP_PKEY_CTX| for a key of type |id|
  415. // (e.g. |EVP_PKEY_HMAC|). This can be used for key generation where
  416. // |EVP_PKEY_CTX_new| can't be used because there isn't an |EVP_PKEY| to pass
  417. // it. It returns the context or NULL on error.
  418. OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e);
  419. // EVP_PKEY_CTX_free frees |ctx| and the data it owns.
  420. OPENSSL_EXPORT void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx);
  421. // EVP_PKEY_CTX_dup allocates a fresh |EVP_PKEY_CTX| and sets it equal to the
  422. // state of |ctx|. It returns the fresh |EVP_PKEY_CTX| or NULL on error.
  423. OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *ctx);
  424. // EVP_PKEY_CTX_get0_pkey returns the |EVP_PKEY| associated with |ctx|.
  425. OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_CTX_get0_pkey(EVP_PKEY_CTX *ctx);
  426. // EVP_PKEY_sign_init initialises an |EVP_PKEY_CTX| for a signing operation. It
  427. // should be called before |EVP_PKEY_sign|.
  428. //
  429. // It returns one on success or zero on error.
  430. OPENSSL_EXPORT int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx);
  431. // EVP_PKEY_sign signs |digest_len| bytes from |digest| using |ctx|. If |sig| is
  432. // NULL, the maximum size of the signature is written to
  433. // |out_sig_len|. Otherwise, |*sig_len| must contain the number of bytes of
  434. // space available at |sig|. If sufficient, the signature will be written to
  435. // |sig| and |*sig_len| updated with the true length.
  436. //
  437. // This function expects a pre-hashed input and will fail for signature
  438. // algorithms which do not support this. Use |EVP_DigestSignInit| to sign an
  439. // unhashed input.
  440. //
  441. // WARNING: Setting |sig| to NULL only gives the maximum size of the
  442. // signature. The actual signature may be smaller.
  443. //
  444. // It returns one on success or zero on error. (Note: this differs from
  445. // OpenSSL, which can also return negative values to indicate an error. )
  446. OPENSSL_EXPORT int EVP_PKEY_sign(EVP_PKEY_CTX *ctx, uint8_t *sig,
  447. size_t *sig_len, const uint8_t *digest,
  448. size_t digest_len);
  449. // EVP_PKEY_verify_init initialises an |EVP_PKEY_CTX| for a signature
  450. // verification operation. It should be called before |EVP_PKEY_verify|.
  451. //
  452. // It returns one on success or zero on error.
  453. OPENSSL_EXPORT int EVP_PKEY_verify_init(EVP_PKEY_CTX *ctx);
  454. // EVP_PKEY_verify verifies that |sig_len| bytes from |sig| are a valid
  455. // signature for |digest|.
  456. //
  457. // This function expects a pre-hashed input and will fail for signature
  458. // algorithms which do not support this. Use |EVP_DigestVerifyInit| to verify a
  459. // signature given the unhashed input.
  460. //
  461. // It returns one on success or zero on error.
  462. OPENSSL_EXPORT int EVP_PKEY_verify(EVP_PKEY_CTX *ctx, const uint8_t *sig,
  463. size_t sig_len, const uint8_t *digest,
  464. size_t digest_len);
  465. // EVP_PKEY_encrypt_init initialises an |EVP_PKEY_CTX| for an encryption
  466. // operation. It should be called before |EVP_PKEY_encrypt|.
  467. //
  468. // It returns one on success or zero on error.
  469. OPENSSL_EXPORT int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx);
  470. // EVP_PKEY_encrypt encrypts |in_len| bytes from |in|. If |out| is NULL, the
  471. // maximum size of the ciphertext is written to |out_len|. Otherwise, |*out_len|
  472. // must contain the number of bytes of space available at |out|. If sufficient,
  473. // the ciphertext will be written to |out| and |*out_len| updated with the true
  474. // length.
  475. //
  476. // WARNING: Setting |out| to NULL only gives the maximum size of the
  477. // ciphertext. The actual ciphertext may be smaller.
  478. //
  479. // It returns one on success or zero on error.
  480. OPENSSL_EXPORT int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, uint8_t *out,
  481. size_t *out_len, const uint8_t *in,
  482. size_t in_len);
  483. // EVP_PKEY_decrypt_init initialises an |EVP_PKEY_CTX| for a decryption
  484. // operation. It should be called before |EVP_PKEY_decrypt|.
  485. //
  486. // It returns one on success or zero on error.
  487. OPENSSL_EXPORT int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx);
  488. // EVP_PKEY_decrypt decrypts |in_len| bytes from |in|. If |out| is NULL, the
  489. // maximum size of the plaintext is written to |out_len|. Otherwise, |*out_len|
  490. // must contain the number of bytes of space available at |out|. If sufficient,
  491. // the ciphertext will be written to |out| and |*out_len| updated with the true
  492. // length.
  493. //
  494. // WARNING: Setting |out| to NULL only gives the maximum size of the
  495. // plaintext. The actual plaintext may be smaller.
  496. //
  497. // It returns one on success or zero on error.
  498. OPENSSL_EXPORT int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, uint8_t *out,
  499. size_t *out_len, const uint8_t *in,
  500. size_t in_len);
  501. // EVP_PKEY_verify_recover_init initialises an |EVP_PKEY_CTX| for a public-key
  502. // decryption operation. It should be called before |EVP_PKEY_verify_recover|.
  503. //
  504. // Public-key decryption is a very obscure operation that is only implemented
  505. // by RSA keys. It is effectively a signature verification operation that
  506. // returns the signed message directly. It is almost certainly not what you
  507. // want.
  508. //
  509. // It returns one on success or zero on error.
  510. OPENSSL_EXPORT int EVP_PKEY_verify_recover_init(EVP_PKEY_CTX *ctx);
  511. // EVP_PKEY_verify_recover decrypts |sig_len| bytes from |sig|. If |out| is
  512. // NULL, the maximum size of the plaintext is written to |out_len|. Otherwise,
  513. // |*out_len| must contain the number of bytes of space available at |out|. If
  514. // sufficient, the ciphertext will be written to |out| and |*out_len| updated
  515. // with the true length.
  516. //
  517. // WARNING: Setting |out| to NULL only gives the maximum size of the
  518. // plaintext. The actual plaintext may be smaller.
  519. //
  520. // See the warning about this operation in |EVP_PKEY_verify_recover_init|. It
  521. // is probably not what you want.
  522. //
  523. // It returns one on success or zero on error.
  524. OPENSSL_EXPORT int EVP_PKEY_verify_recover(EVP_PKEY_CTX *ctx, uint8_t *out,
  525. size_t *out_len, const uint8_t *sig,
  526. size_t siglen);
  527. // EVP_PKEY_derive_init initialises an |EVP_PKEY_CTX| for a key derivation
  528. // operation. It should be called before |EVP_PKEY_derive_set_peer| and
  529. // |EVP_PKEY_derive|.
  530. //
  531. // It returns one on success or zero on error.
  532. OPENSSL_EXPORT int EVP_PKEY_derive_init(EVP_PKEY_CTX *ctx);
  533. // EVP_PKEY_derive_set_peer sets the peer's key to be used for key derivation
  534. // by |ctx| to |peer|. It should be called after |EVP_PKEY_derive_init|. (For
  535. // example, this is used to set the peer's key in (EC)DH.) It returns one on
  536. // success and zero on error.
  537. OPENSSL_EXPORT int EVP_PKEY_derive_set_peer(EVP_PKEY_CTX *ctx, EVP_PKEY *peer);
  538. // EVP_PKEY_derive derives a shared key between the two keys configured in
  539. // |ctx|. If |key| is non-NULL then, on entry, |out_key_len| must contain the
  540. // amount of space at |key|. If sufficient then the shared key will be written
  541. // to |key| and |*out_key_len| will be set to the length. If |key| is NULL then
  542. // |out_key_len| will be set to the maximum length.
  543. //
  544. // WARNING: Setting |out| to NULL only gives the maximum size of the key. The
  545. // actual key may be smaller.
  546. //
  547. // It returns one on success and zero on error.
  548. OPENSSL_EXPORT int EVP_PKEY_derive(EVP_PKEY_CTX *ctx, uint8_t *key,
  549. size_t *out_key_len);
  550. // EVP_PKEY_keygen_init initialises an |EVP_PKEY_CTX| for a key generation
  551. // operation. It should be called before |EVP_PKEY_keygen|.
  552. //
  553. // It returns one on success or zero on error.
  554. OPENSSL_EXPORT int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx);
  555. // EVP_PKEY_keygen performs a key generation operation using the values from
  556. // |ctx| and sets |*ppkey| to a fresh |EVP_PKEY| containing the resulting key.
  557. // It returns one on success or zero on error.
  558. OPENSSL_EXPORT int EVP_PKEY_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey);
  559. // Generic control functions.
  560. // EVP_PKEY_CTX_set_signature_md sets |md| as the digest to be used in a
  561. // signature operation. It returns one on success or zero on error.
  562. OPENSSL_EXPORT int EVP_PKEY_CTX_set_signature_md(EVP_PKEY_CTX *ctx,
  563. const EVP_MD *md);
  564. // EVP_PKEY_CTX_get_signature_md sets |*out_md| to the digest to be used in a
  565. // signature operation. It returns one on success or zero on error.
  566. OPENSSL_EXPORT int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx,
  567. const EVP_MD **out_md);
  568. // RSA specific control functions.
  569. // EVP_PKEY_CTX_set_rsa_padding sets the padding type to use. It should be one
  570. // of the |RSA_*_PADDING| values. Returns one on success or zero on error.
  571. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_padding(EVP_PKEY_CTX *ctx, int padding);
  572. // EVP_PKEY_CTX_get_rsa_padding sets |*out_padding| to the current padding
  573. // value, which is one of the |RSA_*_PADDING| values. Returns one on success or
  574. // zero on error.
  575. OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_padding(EVP_PKEY_CTX *ctx,
  576. int *out_padding);
  577. // EVP_PKEY_CTX_set_rsa_pss_saltlen sets the length of the salt in a PSS-padded
  578. // signature. A value of -1 cause the salt to be the same length as the digest
  579. // in the signature. A value of -2 causes the salt to be the maximum length
  580. // that will fit when signing and recovered from the signature when verifying.
  581. // Otherwise the value gives the size of the salt in bytes.
  582. //
  583. // If unsure, use -1.
  584. //
  585. // Returns one on success or zero on error.
  586. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_pss_saltlen(EVP_PKEY_CTX *ctx,
  587. int salt_len);
  588. // EVP_PKEY_CTX_get_rsa_pss_saltlen sets |*out_salt_len| to the salt length of
  589. // a PSS-padded signature. See the documentation for
  590. // |EVP_PKEY_CTX_set_rsa_pss_saltlen| for details of the special values that it
  591. // can take.
  592. //
  593. // Returns one on success or zero on error.
  594. OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_pss_saltlen(EVP_PKEY_CTX *ctx,
  595. int *out_salt_len);
  596. // EVP_PKEY_CTX_set_rsa_keygen_bits sets the size of the desired RSA modulus,
  597. // in bits, for key generation. Returns one on success or zero on
  598. // error.
  599. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_keygen_bits(EVP_PKEY_CTX *ctx,
  600. int bits);
  601. // EVP_PKEY_CTX_set_rsa_keygen_pubexp sets |e| as the public exponent for key
  602. // generation. Returns one on success or zero on error.
  603. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx,
  604. BIGNUM *e);
  605. // EVP_PKEY_CTX_set_rsa_oaep_md sets |md| as the digest used in OAEP padding.
  606. // Returns one on success or zero on error.
  607. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_oaep_md(EVP_PKEY_CTX *ctx,
  608. const EVP_MD *md);
  609. // EVP_PKEY_CTX_get_rsa_oaep_md sets |*out_md| to the digest function used in
  610. // OAEP padding. Returns one on success or zero on error.
  611. OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_oaep_md(EVP_PKEY_CTX *ctx,
  612. const EVP_MD **out_md);
  613. // EVP_PKEY_CTX_set_rsa_mgf1_md sets |md| as the digest used in MGF1. Returns
  614. // one on success or zero on error.
  615. OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_mgf1_md(EVP_PKEY_CTX *ctx,
  616. const EVP_MD *md);
  617. // EVP_PKEY_CTX_get_rsa_mgf1_md sets |*out_md| to the digest function used in
  618. // MGF1. Returns one on success or zero on error.
  619. OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_mgf1_md(EVP_PKEY_CTX *ctx,
  620. const EVP_MD **out_md);
  621. // EVP_PKEY_CTX_set0_rsa_oaep_label sets |label_len| bytes from |label| as the
  622. // label used in OAEP. DANGER: On success, this call takes ownership of |label|
  623. // and will call |OPENSSL_free| on it when |ctx| is destroyed.
  624. //
  625. // Returns one on success or zero on error.
  626. OPENSSL_EXPORT int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx,
  627. uint8_t *label,
  628. size_t label_len);
  629. // EVP_PKEY_CTX_get0_rsa_oaep_label sets |*out_label| to point to the internal
  630. // buffer containing the OAEP label (which may be NULL) and returns the length
  631. // of the label or a negative value on error.
  632. //
  633. // WARNING: the return value differs from the usual return value convention.
  634. OPENSSL_EXPORT int EVP_PKEY_CTX_get0_rsa_oaep_label(EVP_PKEY_CTX *ctx,
  635. const uint8_t **out_label);
  636. // Deprecated functions.
  637. // EVP_PKEY_DH is defined for compatibility, but it is impossible to create an
  638. // |EVP_PKEY| of that type.
  639. #define EVP_PKEY_DH NID_dhKeyAgreement
  640. // EVP_PKEY_RSA2 was historically an alternate form for RSA public keys (OID
  641. // 2.5.8.1.1), but is no longer accepted.
  642. #define EVP_PKEY_RSA2 NID_rsa
  643. // OpenSSL_add_all_algorithms does nothing.
  644. OPENSSL_EXPORT void OpenSSL_add_all_algorithms(void);
  645. // OPENSSL_add_all_algorithms_conf does nothing.
  646. OPENSSL_EXPORT void OPENSSL_add_all_algorithms_conf(void);
  647. // OpenSSL_add_all_ciphers does nothing.
  648. OPENSSL_EXPORT void OpenSSL_add_all_ciphers(void);
  649. // OpenSSL_add_all_digests does nothing.
  650. OPENSSL_EXPORT void OpenSSL_add_all_digests(void);
  651. // EVP_cleanup does nothing.
  652. OPENSSL_EXPORT void EVP_cleanup(void);
  653. OPENSSL_EXPORT void EVP_CIPHER_do_all_sorted(
  654. void (*callback)(const EVP_CIPHER *cipher, const char *name,
  655. const char *unused, void *arg),
  656. void *arg);
  657. OPENSSL_EXPORT void EVP_MD_do_all_sorted(void (*callback)(const EVP_MD *cipher,
  658. const char *name,
  659. const char *unused,
  660. void *arg),
  661. void *arg);
  662. // i2d_PrivateKey marshals a private key from |key| to an ASN.1, DER
  663. // structure. If |outp| is not NULL then the result is written to |*outp| and
  664. // |*outp| is advanced just past the output. It returns the number of bytes in
  665. // the result, whether written or not, or a negative value on error.
  666. //
  667. // RSA keys are serialized as a DER-encoded RSAPublicKey (RFC 3447) structure.
  668. // EC keys are serialized as a DER-encoded ECPrivateKey (RFC 5915) structure.
  669. //
  670. // Use |RSA_marshal_private_key| or |EC_KEY_marshal_private_key| instead.
  671. OPENSSL_EXPORT int i2d_PrivateKey(const EVP_PKEY *key, uint8_t **outp);
  672. // i2d_PublicKey marshals a public key from |key| to a type-specific format.
  673. // If |outp| is not NULL then the result is written to |*outp| and
  674. // |*outp| is advanced just past the output. It returns the number of bytes in
  675. // the result, whether written or not, or a negative value on error.
  676. //
  677. // RSA keys are serialized as a DER-encoded RSAPublicKey (RFC 3447) structure.
  678. // EC keys are serialized as an EC point per SEC 1.
  679. //
  680. // Use |RSA_marshal_public_key| or |EC_POINT_point2cbb| instead.
  681. OPENSSL_EXPORT int i2d_PublicKey(const EVP_PKEY *key, uint8_t **outp);
  682. // d2i_PrivateKey parses an ASN.1, DER-encoded, private key from |len| bytes at
  683. // |*inp|. If |out| is not NULL then, on exit, a pointer to the result is in
  684. // |*out|. Note that, even if |*out| is already non-NULL on entry, it will not
  685. // be written to. Rather, a fresh |EVP_PKEY| is allocated and the previous one
  686. // is freed. On successful exit, |*inp| is advanced past the DER structure. It
  687. // returns the result or NULL on error.
  688. //
  689. // This function tries to detect one of several formats. Instead, use
  690. // |EVP_parse_private_key| for a PrivateKeyInfo, |RSA_parse_private_key| for an
  691. // RSAPrivateKey, and |EC_parse_private_key| for an ECPrivateKey.
  692. OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **out,
  693. const uint8_t **inp, long len);
  694. // d2i_AutoPrivateKey acts the same as |d2i_PrivateKey|, but detects the type
  695. // of the private key.
  696. //
  697. // This function tries to detect one of several formats. Instead, use
  698. // |EVP_parse_private_key| for a PrivateKeyInfo, |RSA_parse_private_key| for an
  699. // RSAPrivateKey, and |EC_parse_private_key| for an ECPrivateKey.
  700. OPENSSL_EXPORT EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **out, const uint8_t **inp,
  701. long len);
  702. // EVP_PKEY_get0_DH returns NULL.
  703. OPENSSL_EXPORT DH *EVP_PKEY_get0_DH(const EVP_PKEY *pkey);
  704. // EVP_PKEY_get1_DH returns NULL.
  705. OPENSSL_EXPORT DH *EVP_PKEY_get1_DH(const EVP_PKEY *pkey);
  706. // Preprocessor compatibility section (hidden).
  707. //
  708. // Historically, a number of APIs were implemented in OpenSSL as macros and
  709. // constants to 'ctrl' functions. To avoid breaking #ifdefs in consumers, this
  710. // section defines a number of legacy macros.
  711. // |BORINGSSL_PREFIX| already makes each of these symbols into macros, so there
  712. // is no need to define conflicting macros.
  713. #if !defined(BORINGSSL_PREFIX)
  714. #define EVP_PKEY_CTX_set_rsa_oaep_md EVP_PKEY_CTX_set_rsa_oaep_md
  715. #define EVP_PKEY_CTX_set0_rsa_oaep_label EVP_PKEY_CTX_set0_rsa_oaep_label
  716. #endif
  717. // Private structures.
  718. struct evp_pkey_st {
  719. CRYPTO_refcount_t references;
  720. // type contains one of the EVP_PKEY_* values or NID_undef and determines
  721. // which element (if any) of the |pkey| union is valid.
  722. int type;
  723. union {
  724. void *ptr;
  725. RSA *rsa;
  726. DSA *dsa;
  727. DH *dh;
  728. EC_KEY *ec;
  729. } pkey;
  730. // ameth contains a pointer to a method table that contains many ASN.1
  731. // methods for the key type.
  732. const EVP_PKEY_ASN1_METHOD *ameth;
  733. } /* EVP_PKEY */;
  734. #if defined(__cplusplus)
  735. } // extern C
  736. extern "C++" {
  737. BSSL_NAMESPACE_BEGIN
  738. BORINGSSL_MAKE_DELETER(EVP_PKEY, EVP_PKEY_free)
  739. BORINGSSL_MAKE_UP_REF(EVP_PKEY, EVP_PKEY_up_ref)
  740. BORINGSSL_MAKE_DELETER(EVP_PKEY_CTX, EVP_PKEY_CTX_free)
  741. BSSL_NAMESPACE_END
  742. } // extern C++
  743. #endif
  744. #define EVP_R_BUFFER_TOO_SMALL 100
  745. #define EVP_R_COMMAND_NOT_SUPPORTED 101
  746. #define EVP_R_DECODE_ERROR 102
  747. #define EVP_R_DIFFERENT_KEY_TYPES 103
  748. #define EVP_R_DIFFERENT_PARAMETERS 104
  749. #define EVP_R_ENCODE_ERROR 105
  750. #define EVP_R_EXPECTING_AN_EC_KEY_KEY 106
  751. #define EVP_R_EXPECTING_AN_RSA_KEY 107
  752. #define EVP_R_EXPECTING_A_DSA_KEY 108
  753. #define EVP_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE 109
  754. #define EVP_R_INVALID_DIGEST_LENGTH 110
  755. #define EVP_R_INVALID_DIGEST_TYPE 111
  756. #define EVP_R_INVALID_KEYBITS 112
  757. #define EVP_R_INVALID_MGF1_MD 113
  758. #define EVP_R_INVALID_OPERATION 114
  759. #define EVP_R_INVALID_PADDING_MODE 115
  760. #define EVP_R_INVALID_PSS_SALTLEN 116
  761. #define EVP_R_KEYS_NOT_SET 117
  762. #define EVP_R_MISSING_PARAMETERS 118
  763. #define EVP_R_NO_DEFAULT_DIGEST 119
  764. #define EVP_R_NO_KEY_SET 120
  765. #define EVP_R_NO_MDC2_SUPPORT 121
  766. #define EVP_R_NO_NID_FOR_CURVE 122
  767. #define EVP_R_NO_OPERATION_SET 123
  768. #define EVP_R_NO_PARAMETERS_SET 124
  769. #define EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 125
  770. #define EVP_R_OPERATON_NOT_INITIALIZED 126
  771. #define EVP_R_UNKNOWN_PUBLIC_KEY_TYPE 127
  772. #define EVP_R_UNSUPPORTED_ALGORITHM 128
  773. #define EVP_R_UNSUPPORTED_PUBLIC_KEY_TYPE 129
  774. #define EVP_R_NOT_A_PRIVATE_KEY 130
  775. #define EVP_R_INVALID_SIGNATURE 131
  776. #define EVP_R_MEMORY_LIMIT_EXCEEDED 132
  777. #define EVP_R_INVALID_PARAMETERS 133
  778. #endif // OPENSSL_HEADER_EVP_H