blob: 58b00a53792d47876cea558168a55e5aabbbcea8 [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001/* 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
57#ifndef OPENSSL_HEADER_EVP_H
58#define OPENSSL_HEADER_EVP_H
59
60#include <openssl/base.h>
61#include <openssl/stack.h>
62
63/* OpenSSL included digest and cipher functions in this header so we include
Adam Langleyfd772a52014-06-20 12:00:00 -070064 * them for users that still expect that.
65 *
66 * TODO(fork): clean up callers so that they include what they use. */
67#include <openssl/aead.h>
Adam Langley95c29f32014-06-20 12:00:00 -070068#include <openssl/cipher.h>
69#include <openssl/digest.h>
70#include <openssl/mem.h>
71#include <openssl/obj.h>
72#include <openssl/thread.h>
73
74#if defined(__cplusplus)
75extern "C" {
76#endif
77
78
79/* EVP abstracts over public/private key algorithms. */
80
81
82/* Public key objects. */
83
84/* EVP_PKEY_new creates a new, empty public-key object and returns it or NULL
85 * on allocation failure. */
David Benjaminc44d2f42014-08-20 16:24:00 -040086OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_new(void);
Adam Langley95c29f32014-06-20 12:00:00 -070087
88/* EVP_PKEY_free frees all data referenced by |pkey| and then frees |pkey|
89 * itself. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070090OPENSSL_EXPORT void EVP_PKEY_free(EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -070091
David Benjaminecc0ce72014-07-18 18:39:42 -040092/* EVP_PKEY_is_opaque returns one if |pkey| is opaque. Opaque keys are backed by
93 * custom implementations which do not expose key material and parameters. It is
94 * an error to attempt to duplicate, export, or compare an opaque key. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070095OPENSSL_EXPORT int EVP_PKEY_is_opaque(const EVP_PKEY *pkey);
David Benjaminecc0ce72014-07-18 18:39:42 -040096
David Benjaminc20febe2014-11-11 23:47:50 -050097/* EVP_PKEY_supports_digest returns one if |pkey| supports digests of
98 * type |md|. This is intended for use with EVP_PKEYs backing custom
99 * implementations which can't sign all digests. */
100OPENSSL_EXPORT int EVP_PKEY_supports_digest(const EVP_PKEY *pkey,
101 const EVP_MD *md);
102
Adam Langley95c29f32014-06-20 12:00:00 -0700103/* EVP_PKEY_cmp compares |a| and |b| and returns one if they are equal, zero if
104 * not and a negative number on error.
105 *
106 * WARNING: this differs from the traditional return value of a "cmp"
107 * function. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700108OPENSSL_EXPORT int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
Adam Langley95c29f32014-06-20 12:00:00 -0700109
110/* EVP_PKEY_dup adds one to the reference count of |pkey| and returns
111 * |pkey|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700112OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_dup(EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700113
114/* EVP_PKEY_copy_parameters sets the parameters of |to| to equal the parameters
115 * of |from|. It returns one on success and zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700116OPENSSL_EXPORT int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from);
Adam Langley95c29f32014-06-20 12:00:00 -0700117
118/* EVP_PKEY_missing_parameters returns one if |pkey| is missing needed
119 * parameters or zero if not, or if the algorithm doesn't take parameters. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700120OPENSSL_EXPORT int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700121
David Benjamin06732152015-03-18 16:30:04 -0400122/* EVP_PKEY_size returns the maximum size, in bytes, of a signature signed by
123 * |pkey|. For an RSA key, this returns the number of bytes needed to represent
124 * the modulus. For an EC key, this returns the maximum size of a DER-encoded
125 * ECDSA signature. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700126OPENSSL_EXPORT int EVP_PKEY_size(const EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700127
David Benjamin06732152015-03-18 16:30:04 -0400128/* EVP_PKEY_bits returns the "size", in bits, of |pkey|. For an RSA key, this
129 * returns the bit length of the modulus. For an EC key, this returns the bit
130 * length of the group order. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700131OPENSSL_EXPORT int EVP_PKEY_bits(EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700132
133/* EVP_PKEY_id returns the type of |pkey|, which is one of the |EVP_PKEY_*|
134 * values. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700135OPENSSL_EXPORT int EVP_PKEY_id(const EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700136
137/* EVP_PKEY_type returns a canonicalised form of |NID|. For example,
138 * |EVP_PKEY_RSA2| will be turned into |EVP_PKEY_RSA|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700139OPENSSL_EXPORT int EVP_PKEY_type(int nid);
Adam Langley95c29f32014-06-20 12:00:00 -0700140
David Benjamine9e38372014-12-23 12:26:22 -0500141/* Deprecated: EVP_PKEY_new_mac_key allocates a fresh |EVP_PKEY| of the given
142 * type (e.g. |EVP_PKEY_HMAC|), sets |mac_key| as the MAC key and "generates" a
143 * new key, suitable for signing. It returns the fresh |EVP_PKEY|, or NULL on
144 * error. Use |HMAC_CTX| directly instead. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700145OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_new_mac_key(int type, ENGINE *engine,
146 const uint8_t *mac_key,
147 size_t mac_key_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700148
149
150/* Getting and setting concrete public key types.
151 *
152 * The following functions get and set the underlying public key in an
Adam Langley389e3f02014-08-19 11:24:27 -0700153 * |EVP_PKEY| object. The |set1| functions take an additional reference to the
Adam Langley95c29f32014-06-20 12:00:00 -0700154 * underlying key and return one on success or zero on error. The |assign|
155 * functions adopt the caller's reference. The getters return a fresh reference
156 * to the underlying object. */
157
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700158OPENSSL_EXPORT int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key);
159OPENSSL_EXPORT int EVP_PKEY_assign_RSA(EVP_PKEY *pkey, RSA *key);
160OPENSSL_EXPORT RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700161
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700162OPENSSL_EXPORT int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, struct dsa_st *key);
163OPENSSL_EXPORT int EVP_PKEY_assign_DSA(EVP_PKEY *pkey, DSA *key);
164OPENSSL_EXPORT struct dsa_st *EVP_PKEY_get1_DSA(EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700165
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700166OPENSSL_EXPORT int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, struct ec_key_st *key);
167OPENSSL_EXPORT int EVP_PKEY_assign_EC_KEY(EVP_PKEY *pkey, EC_KEY *key);
168OPENSSL_EXPORT struct ec_key_st *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700169
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700170OPENSSL_EXPORT int EVP_PKEY_set1_DH(EVP_PKEY *pkey, struct dh_st *key);
171OPENSSL_EXPORT int EVP_PKEY_assign_DH(EVP_PKEY *pkey, DH *key);
172OPENSSL_EXPORT struct dh_st *EVP_PKEY_get1_DH(EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700173
174#define EVP_PKEY_NONE NID_undef
175#define EVP_PKEY_RSA NID_rsaEncryption
176#define EVP_PKEY_RSA2 NID_rsa
177#define EVP_PKEY_DSA NID_dsa
178#define EVP_PKEY_DH NID_dhKeyAgreement
179#define EVP_PKEY_DHX NID_dhpublicnumber
180#define EVP_PKEY_EC NID_X9_62_id_ecPublicKey
David Benjamine9e38372014-12-23 12:26:22 -0500181
182/* Deprecated: Use |HMAC_CTX| directly instead. */
Adam Langley95c29f32014-06-20 12:00:00 -0700183#define EVP_PKEY_HMAC NID_hmac
184
185/* EVP_PKEY_assign sets the underlying key of |pkey| to |key|, which must be of
186 * the given type. The |type| argument should be one of the |EVP_PKEY_*|
187 * values. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700188OPENSSL_EXPORT int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key);
Adam Langley95c29f32014-06-20 12:00:00 -0700189
190/* EVP_PKEY_set_type sets the type of |pkey| to |type|, which should be one of
191 * the |EVP_PKEY_*| values. It returns one if sucessful or zero otherwise. If
192 * |pkey| is NULL, it simply reports whether the type is known. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700193OPENSSL_EXPORT int EVP_PKEY_set_type(EVP_PKEY *pkey, int type);
Adam Langley95c29f32014-06-20 12:00:00 -0700194
195/* EVP_PKEY_cmp_parameters compares the parameters of |a| and |b|. It returns
196 * one if they match, zero if not, or a negative number of on error.
197 *
198 * WARNING: the return value differs from the usual return value convention. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700199OPENSSL_EXPORT int EVP_PKEY_cmp_parameters(const EVP_PKEY *a,
200 const EVP_PKEY *b);
Adam Langley95c29f32014-06-20 12:00:00 -0700201
202
203/* ASN.1 functions */
204
205/* d2i_PrivateKey parses an ASN.1, DER-encoded, private key from |len| bytes at
206 * |*inp|. If |out| is not NULL then, on exit, a pointer to the result is in
207 * |*out|. If |*out| is already non-NULL on entry then the result is written
208 * directly into |*out|, otherwise a fresh |EVP_PKEY| is allocated. On
209 * successful exit, |*inp| is advanced past the DER structure. It returns the
210 * result or NULL on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700211OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **out,
212 const uint8_t **inp, long len);
Adam Langley95c29f32014-06-20 12:00:00 -0700213
214/* d2i_AutoPrivateKey acts the same as |d2i_PrivateKey|, but detects the type
215 * of the private key. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700216OPENSSL_EXPORT EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **out, const uint8_t **inp,
217 long len);
Adam Langley95c29f32014-06-20 12:00:00 -0700218
219/* i2d_PrivateKey marshals a private key from |key| to an ASN.1, DER
220 * structure. If |outp| is not NULL then the result is written to |*outp| and
221 * |*outp| is advanced just past the output. It returns the number of bytes in
222 * the result, whether written or not, or a negative value on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700223OPENSSL_EXPORT int i2d_PrivateKey(const EVP_PKEY *key, uint8_t **outp);
Adam Langley95c29f32014-06-20 12:00:00 -0700224
225/* i2d_PublicKey marshals a public key from |key| to an ASN.1, DER
226 * structure. If |outp| is not NULL then the result is written to |*outp| and
227 * |*outp| is advanced just past the output. It returns the number of bytes in
228 * the result, whether written or not, or a negative value on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700229OPENSSL_EXPORT int i2d_PublicKey(EVP_PKEY *key, uint8_t **outp);
Adam Langley95c29f32014-06-20 12:00:00 -0700230
231
232/* Signing */
233
234/* EVP_DigestSignInit sets up |ctx| for a signing operation with |type| and
235 * |pkey|. The |ctx| argument must have been initialised with
236 * |EVP_MD_CTX_init|. If |pctx| is not NULL, the |EVP_PKEY_CTX| of the signing
237 * operation will be written to |*pctx|; this can be used to set alternative
238 * signing options.
239 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700240 * It returns one on success, or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700241OPENSSL_EXPORT int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
242 const EVP_MD *type, ENGINE *e,
243 EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700244
245/* EVP_DigestSignUpdate appends |len| bytes from |data| to the data which will
246 * be signed in |EVP_DigestSignFinal|. It returns one on success and zero
247 * otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700248OPENSSL_EXPORT int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *data,
249 size_t len);
Adam Langley95c29f32014-06-20 12:00:00 -0700250
251/* EVP_DigestSignFinal signs the data that has been included by one or more
252 * calls to |EVP_DigestSignUpdate|. If |out_sig| is NULL then |*out_sig_len| is
253 * set to the maximum number of output bytes. Otherwise, on entry,
254 * |*out_sig_len| must contain the length of the |out_sig| buffer. If the call
255 * is successful, the signature is written to |out_sig| and |*out_sig_len| is
256 * set to its length.
257 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700258 * It returns one on success, or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700259OPENSSL_EXPORT int EVP_DigestSignFinal(EVP_MD_CTX *ctx, uint8_t *out_sig,
260 size_t *out_sig_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700261
David Benjamin8f160a62014-10-09 14:50:20 -0400262/* EVP_DigestSignAlgorithm encodes the signing parameters of |ctx| as an
263 * AlgorithmIdentifer and saves the result in |algor|.
264 *
265 * It returns one on success, or zero on error.
266 *
267 * TODO(davidben): This API should eventually lose the dependency on
268 * crypto/asn1/. */
269OPENSSL_EXPORT int EVP_DigestSignAlgorithm(EVP_MD_CTX *ctx, X509_ALGOR *algor);
270
Adam Langley95c29f32014-06-20 12:00:00 -0700271
272/* Verifying */
273
274/* EVP_DigestVerifyInit sets up |ctx| for a signature verification operation
275 * with |type| and |pkey|. The |ctx| argument must have been initialised with
276 * |EVP_MD_CTX_init|. If |pctx| is not NULL, the |EVP_PKEY_CTX| of the signing
277 * operation will be written to |*pctx|; this can be used to set alternative
278 * signing options.
279 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700280 * It returns one on success, or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700281OPENSSL_EXPORT int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
282 const EVP_MD *type, ENGINE *e,
283 EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700284
David Benjamin8f160a62014-10-09 14:50:20 -0400285/* EVP_DigestVerifyInitFromAlgorithm sets up |ctx| for a signature verification
286 * operation with public key |pkey| and parameters from |algor|. The |ctx|
287 * argument must have been initialised with |EVP_MD_CTX_init|.
288 *
289 * It returns one on success, or zero on error.
290 *
291 * TODO(davidben): This API should eventually lose the dependency on
292 * crypto/asn1/. */
293OPENSSL_EXPORT int EVP_DigestVerifyInitFromAlgorithm(EVP_MD_CTX *ctx,
294 X509_ALGOR *algor,
295 EVP_PKEY *pkey);
296
Adam Langley95c29f32014-06-20 12:00:00 -0700297/* EVP_DigestVerifyUpdate appends |len| bytes from |data| to the data which
298 * will be verified by |EVP_DigestVerifyFinal|. It returns one on success and
299 * zero otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700300OPENSSL_EXPORT int EVP_DigestVerifyUpdate(EVP_MD_CTX *ctx, const void *data,
301 size_t len);
Adam Langley95c29f32014-06-20 12:00:00 -0700302
303/* EVP_DigestVerifyFinal verifies that |sig_len| bytes of |sig| are a valid
304 * signature for the data that has been included by one or more calls to
David Benjamine1679762014-10-28 16:06:56 -0400305 * |EVP_DigestVerifyUpdate|. It returns one on success and zero otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700306OPENSSL_EXPORT int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig,
307 size_t sig_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700308
309
310/* Signing (old functions) */
311
312/* EVP_SignInit_ex configures |ctx|, which must already have been initialised,
313 * for a fresh signing operation using the hash function |type|. It returns one
314 * on success and zero otherwise.
315 *
316 * (In order to initialise |ctx|, either obtain it initialised with
317 * |EVP_MD_CTX_create|, or use |EVP_MD_CTX_init|.) */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700318OPENSSL_EXPORT int EVP_SignInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type,
319 ENGINE *impl);
Adam Langley95c29f32014-06-20 12:00:00 -0700320
321/* EVP_SignInit is a deprecated version of |EVP_SignInit_ex|.
322 *
323 * TODO(fork): remove. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700324OPENSSL_EXPORT int EVP_SignInit(EVP_MD_CTX *ctx, const EVP_MD *type);
Adam Langley95c29f32014-06-20 12:00:00 -0700325
326/* EVP_SignUpdate appends |len| bytes from |data| to the data which will be
327 * signed in |EVP_SignFinal|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700328OPENSSL_EXPORT int EVP_SignUpdate(EVP_MD_CTX *ctx, const void *data,
329 size_t len);
Adam Langley95c29f32014-06-20 12:00:00 -0700330
331/* EVP_SignFinal signs the data that has been included by one or more calls to
332 * |EVP_SignUpdate|, using the key |pkey|, and writes it to |sig|. On entry,
333 * |sig| must point to at least |EVP_PKEY_size(pkey)| bytes of space. The
334 * actual size of the signature is written to |*out_sig_len|.
335 *
336 * It returns one on success and zero otherwise.
337 *
338 * It does not modify |ctx|, thus it's possible to continue to use |ctx| in
339 * order to sign a longer message. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700340OPENSSL_EXPORT int EVP_SignFinal(const EVP_MD_CTX *ctx, uint8_t *sig,
341 unsigned int *out_sig_len, EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700342
343
344/* Verifying (old functions) */
345
346/* EVP_VerifyInit_ex configures |ctx|, which must already have been
347 * initialised, for a fresh signature verification operation using the hash
348 * function |type|. It returns one on success and zero otherwise.
349 *
350 * (In order to initialise |ctx|, either obtain it initialised with
351 * |EVP_MD_CTX_create|, or use |EVP_MD_CTX_init|.) */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700352OPENSSL_EXPORT int EVP_VerifyInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type,
353 ENGINE *impl);
Adam Langley95c29f32014-06-20 12:00:00 -0700354
355/* EVP_VerifyInit is a deprecated version of |EVP_VerifyInit_ex|.
356 *
357 * TODO(fork): remove. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700358OPENSSL_EXPORT int EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type);
Adam Langley95c29f32014-06-20 12:00:00 -0700359
360/* EVP_VerifyUpdate appends |len| bytes from |data| to the data which will be
361 * signed in |EVP_VerifyFinal|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700362OPENSSL_EXPORT int EVP_VerifyUpdate(EVP_MD_CTX *ctx, const void *data,
363 size_t len);
Adam Langley95c29f32014-06-20 12:00:00 -0700364
365/* EVP_VerifyFinal verifies that |sig_len| bytes of |sig| are a valid
366 * signature, by |pkey|, for the data that has been included by one or more
367 * calls to |EVP_VerifyUpdate|.
368 *
369 * It returns one on success and zero otherwise.
370 *
371 * It does not modify |ctx|, thus it's possible to continue to use |ctx| in
372 * order to sign a longer message. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700373OPENSSL_EXPORT int EVP_VerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig,
374 size_t sig_len, EVP_PKEY *pkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700375
376
377/* Printing */
378
379/* EVP_PKEY_print_public prints a textual representation of the public key in
380 * |pkey| to |out|. Returns one on success or zero otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700381OPENSSL_EXPORT int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
382 int indent, ASN1_PCTX *pctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700383
384/* EVP_PKEY_print_public prints a textual representation of the private key in
385 * |pkey| to |out|. Returns one on success or zero otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700386OPENSSL_EXPORT int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
387 int indent, ASN1_PCTX *pctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700388
389/* EVP_PKEY_print_public prints a textual representation of the parameters in
390 * |pkey| to |out|. Returns one on success or zero otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700391OPENSSL_EXPORT int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
392 int indent, ASN1_PCTX *pctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700393
394
395/* Password stretching.
396 *
397 * Password stretching functions take a low-entropy password and apply a slow
398 * function that results in a key suitable for use in symmetric
399 * cryptography. */
400
401/* PKCS5_PBKDF2_HMAC computes |iterations| iterations of PBKDF2 of |password|
402 * and |salt|, using |digest|, and outputs |key_len| bytes to |out_key|. It
403 * returns one on success and zero on error. */
Eric Roman4dcb0572015-01-20 12:19:13 -0800404OPENSSL_EXPORT int PKCS5_PBKDF2_HMAC(const char *password, size_t password_len,
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700405 const uint8_t *salt, size_t salt_len,
406 unsigned iterations, const EVP_MD *digest,
407 size_t key_len, uint8_t *out_key);
Adam Langley95c29f32014-06-20 12:00:00 -0700408
409/* PKCS5_PBKDF2_HMAC_SHA1 is the same as PKCS5_PBKDF2_HMAC, but with |digest|
410 * fixed to |EVP_sha1|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700411OPENSSL_EXPORT int PKCS5_PBKDF2_HMAC_SHA1(const char *password,
Eric Roman4dcb0572015-01-20 12:19:13 -0800412 size_t password_len, const uint8_t *salt,
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700413 size_t salt_len, unsigned iterations,
414 size_t key_len, uint8_t *out_key);
Adam Langley95c29f32014-06-20 12:00:00 -0700415
416
417/* Public key contexts.
418 *
419 * |EVP_PKEY_CTX| objects hold the context of an operation (e.g. signing or
420 * encrypting) that uses a public key. */
421
422/* EVP_PKEY_CTX_new allocates a fresh |EVP_PKEY_CTX| for use with |pkey|. It
423 * returns the context or NULL on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700424OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e);
Adam Langley95c29f32014-06-20 12:00:00 -0700425
426/* EVP_PKEY_CTX_new allocates a fresh |EVP_PKEY_CTX| for a key of type |id|
427 * (e.g. |EVP_PKEY_HMAC|). This can be used for key generation where
428 * |EVP_PKEY_CTX_new| can't be used because there isn't an |EVP_PKEY| to pass
429 * it. It returns the context or NULL on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700430OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e);
Adam Langley95c29f32014-06-20 12:00:00 -0700431
432/* EVP_KEY_CTX_free frees |ctx| and the data it owns. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700433OPENSSL_EXPORT void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700434
435/* EVP_PKEY_CTX_dup allocates a fresh |EVP_PKEY_CTX| and sets it equal to the
436 * state of |ctx|. It returns the fresh |EVP_PKEY_CTX| or NULL on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700437OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700438
439/* EVP_PKEY_CTX_get0_pkey returns the |EVP_PKEY| associated with |ctx|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700440OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_CTX_get0_pkey(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700441
442/* EVP_PKEY_CTX_set_app_data sets an opaque pointer on |ctx|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700443OPENSSL_EXPORT void EVP_PKEY_CTX_set_app_data(EVP_PKEY_CTX *ctx, void *data);
Adam Langley95c29f32014-06-20 12:00:00 -0700444
445/* EVP_PKEY_CTX_get_app_data returns the opaque pointer from |ctx| that was
446 * previously set with |EVP_PKEY_CTX_set_app_data|, or NULL if none has been
447 * set. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700448OPENSSL_EXPORT void *EVP_PKEY_CTX_get_app_data(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700449
Adam Langley95c29f32014-06-20 12:00:00 -0700450/* EVP_PKEY_sign_init initialises an |EVP_PKEY_CTX| for a signing operation. It
451 * should be called before |EVP_PKEY_sign|.
452 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700453 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700454OPENSSL_EXPORT int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700455
456/* EVP_PKEY_sign signs |data_len| bytes from |data| using |ctx|. If |sig| is
David Benjamin9b561e62014-07-09 11:47:42 -0400457 * NULL, the maximum size of the signature is written to
458 * |out_sig_len|. Otherwise, |*sig_len| must contain the number of bytes of
459 * space available at |sig|. If sufficient, the signature will be written to
460 * |sig| and |*sig_len| updated with the true length.
461 *
David Benjamine1679762014-10-28 16:06:56 -0400462 * WARNING: Setting |sig| to NULL only gives the maximum size of the
463 * signature. The actual signature may be smaller.
Adam Langley95c29f32014-06-20 12:00:00 -0700464 *
465 * It returns one on success or zero on error. (Note: this differs from
466 * OpenSSL, which can also return negative values to indicate an error. ) */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700467OPENSSL_EXPORT int EVP_PKEY_sign(EVP_PKEY_CTX *ctx, uint8_t *sig,
468 size_t *sig_len, const uint8_t *data,
469 size_t data_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700470
471/* EVP_PKEY_verify_init initialises an |EVP_PKEY_CTX| for a signature
472 * verification operation. It should be called before |EVP_PKEY_verify|.
473 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700474 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700475OPENSSL_EXPORT int EVP_PKEY_verify_init(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700476
477/* EVP_PKEY_verify verifies that |sig_len| bytes from |sig| are a valid signature
478 * for |data|.
479 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700480 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700481OPENSSL_EXPORT int EVP_PKEY_verify(EVP_PKEY_CTX *ctx, const uint8_t *sig,
482 size_t sig_len, const uint8_t *data,
483 size_t data_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700484
485/* EVP_PKEY_encrypt_init initialises an |EVP_PKEY_CTX| for an encryption
486 * operation. It should be called before |EVP_PKEY_encrypt|.
487 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700488 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700489OPENSSL_EXPORT int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700490
David Benjamin9b561e62014-07-09 11:47:42 -0400491/* EVP_PKEY_encrypt encrypts |in_len| bytes from |in|. If |out| is NULL, the
492 * maximum size of the ciphertext is written to |out_len|. Otherwise, |*out_len|
493 * must contain the number of bytes of space available at |out|. If sufficient,
494 * the ciphertext will be written to |out| and |*out_len| updated with the true
495 * length.
496 *
497 * WARNING: Setting |out| to NULL only gives the maximum size of the
498 * ciphertext. The actual ciphertext may be smaller.
Adam Langley95c29f32014-06-20 12:00:00 -0700499 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700500 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700501OPENSSL_EXPORT int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, uint8_t *out,
502 size_t *out_len, const uint8_t *in,
503 size_t in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700504
505/* EVP_PKEY_decrypt_init initialises an |EVP_PKEY_CTX| for a decryption
506 * operation. It should be called before |EVP_PKEY_decrypt|.
507 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700508 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700509OPENSSL_EXPORT int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700510
David Benjamin9b561e62014-07-09 11:47:42 -0400511/* EVP_PKEY_decrypt decrypts |in_len| bytes from |in|. If |out| is NULL, the
512 * maximum size of the plaintext is written to |out_len|. Otherwise, |*out_len|
513 * must contain the number of bytes of space available at |out|. If sufficient,
514 * the ciphertext will be written to |out| and |*out_len| updated with the true
515 * length.
516 *
517 * WARNING: Setting |out| to NULL only gives the maximum size of the
518 * plaintext. The actual plaintext may be smaller.
Adam Langley95c29f32014-06-20 12:00:00 -0700519 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700520 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700521OPENSSL_EXPORT int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, uint8_t *out,
522 size_t *out_len, const uint8_t *in,
523 size_t in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700524
525/* EVP_PKEY_derive_init initialises an |EVP_PKEY_CTX| for a key derivation
526 * operation. It should be called before |EVP_PKEY_derive_set_peer| and
527 * |EVP_PKEY_derive|.
528 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700529 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700530OPENSSL_EXPORT int EVP_PKEY_derive_init(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700531
532/* EVP_PKEY_derive_set_peer sets the peer's key to be used for key derivation
533 * by |ctx| to |peer|. It should be called after |EVP_PKEY_derive_init|. (For
534 * example, this is used to set the peer's key in (EC)DH.) It returns one on
Adam Langley5129e2d2014-07-25 10:06:44 -0700535 * success and zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700536OPENSSL_EXPORT int EVP_PKEY_derive_set_peer(EVP_PKEY_CTX *ctx, EVP_PKEY *peer);
Adam Langley95c29f32014-06-20 12:00:00 -0700537
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
David Benjamin9b561e62014-07-09 11:47:42 -0400542 * |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.
Adam Langley95c29f32014-06-20 12:00:00 -0700546 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700547 * It returns one on success and zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700548OPENSSL_EXPORT int EVP_PKEY_derive(EVP_PKEY_CTX *ctx, uint8_t *key,
549 size_t *out_key_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700550
551/* EVP_PKEY_keygen_init initialises an |EVP_PKEY_CTX| for a key generation
552 * operation. It should be called before |EVP_PKEY_keygen|.
553 *
Adam Langley5129e2d2014-07-25 10:06:44 -0700554 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700555OPENSSL_EXPORT int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700556
557/* EVP_PKEY_keygen performs a key generation operation using the values from
558 * |ctx| and sets |*ppkey| to a fresh |EVP_PKEY| containing the resulting key.
Adam Langley5129e2d2014-07-25 10:06:44 -0700559 * It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700560OPENSSL_EXPORT int EVP_PKEY_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey);
Adam Langley95c29f32014-06-20 12:00:00 -0700561
562
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400563/* Generic control functions. */
Adam Langley95c29f32014-06-20 12:00:00 -0700564
565/* EVP_PKEY_CTX_set_signature_md sets |md| as the digest to be used in a
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400566 * signature operation. It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700567OPENSSL_EXPORT int EVP_PKEY_CTX_set_signature_md(EVP_PKEY_CTX *ctx,
568 const EVP_MD *md);
Adam Langley95c29f32014-06-20 12:00:00 -0700569
570/* EVP_PKEY_CTX_get_signature_md sets |*out_md| to the digest to be used in a
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400571 * signature operation. It returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700572OPENSSL_EXPORT int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx,
573 const EVP_MD **out_md);
Adam Langley95c29f32014-06-20 12:00:00 -0700574
Adam Langley95c29f32014-06-20 12:00:00 -0700575
576/* RSA specific control functions. */
577
578/* EVP_PKEY_CTX_set_rsa_padding sets the padding type to use. It should be one
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400579 * of the |RSA_*_PADDING| values. Returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700580OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_padding(EVP_PKEY_CTX *ctx, int padding);
Adam Langley95c29f32014-06-20 12:00:00 -0700581
582/* EVP_PKEY_CTX_get_rsa_padding sets |*out_padding| to the current padding
583 * value, which is one of the |RSA_*_PADDING| values. Returns one on success or
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400584 * zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700585OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_padding(EVP_PKEY_CTX *ctx,
586 int *out_padding);
Adam Langley95c29f32014-06-20 12:00:00 -0700587
588/* EVP_PKEY_CTX_set_rsa_pss_saltlen sets the length of the salt in a PSS-padded
589 * signature. A value of -1 cause the salt to be the same length as the digest
590 * in the signature. A value of -2 causes the salt to be the maximum length
591 * that will fit. Otherwise the value gives the size of the salt in bytes.
592 *
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400593 * Returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700594OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_pss_saltlen(EVP_PKEY_CTX *ctx,
595 int salt_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700596
597/* EVP_PKEY_CTX_get_rsa_pss_saltlen sets |*out_salt_len| to the salt length of
598 * a PSS-padded signature. See the documentation for
599 * |EVP_PKEY_CTX_set_rsa_pss_saltlen| for details of the special values that it
600 * can take.
601 *
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400602 * Returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700603OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_pss_saltlen(EVP_PKEY_CTX *ctx,
604 int *out_salt_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700605
606/* EVP_PKEY_CTX_set_rsa_keygen_bits sets the size of the desired RSA modulus,
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400607 * in bits, for key generation. Returns one on success or zero on
608 * error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700609OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_keygen_bits(EVP_PKEY_CTX *ctx,
610 int bits);
Adam Langley95c29f32014-06-20 12:00:00 -0700611
612/* EVP_PKEY_CTX_set_rsa_keygen_pubexp sets |e| as the public exponent for key
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400613 * generation. Returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700614OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx,
615 BIGNUM *e);
Adam Langley95c29f32014-06-20 12:00:00 -0700616
617/* EVP_PKEY_CTX_set_rsa_oaep_md sets |md| as the digest used in OAEP padding.
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400618 * Returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700619OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_oaep_md(EVP_PKEY_CTX *ctx,
620 const EVP_MD *md);
Adam Langley95c29f32014-06-20 12:00:00 -0700621
622/* EVP_PKEY_CTX_get_rsa_oaep_md sets |*out_md| to the digest function used in
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400623 * OAEP padding. Returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700624OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_oaep_md(EVP_PKEY_CTX *ctx,
625 const EVP_MD **out_md);
Adam Langley95c29f32014-06-20 12:00:00 -0700626
627/* EVP_PKEY_CTX_set_rsa_mgf1_md sets |md| as the digest used in MGF1. Returns
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400628 * one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700629OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_mgf1_md(EVP_PKEY_CTX *ctx,
630 const EVP_MD *md);
Adam Langley95c29f32014-06-20 12:00:00 -0700631
632/* EVP_PKEY_CTX_get_rsa_mgf1_md sets |*out_md| to the digest function used in
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400633 * MGF1. Returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700634OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_mgf1_md(EVP_PKEY_CTX *ctx,
635 const EVP_MD **out_md);
Adam Langley95c29f32014-06-20 12:00:00 -0700636
637/* EVP_PKEY_CTX_set0_rsa_oaep_label sets |label_len| bytes from |label| as the
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400638 * label used in OAEP. DANGER: On success, this call takes ownership of |label|
639 * and will call |OPENSSL_free| on it when |ctx| is destroyed.
Adam Langley95c29f32014-06-20 12:00:00 -0700640 *
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400641 * Returns one on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700642OPENSSL_EXPORT int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx,
643 const uint8_t *label,
644 size_t label_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700645
646/* EVP_PKEY_CTX_get0_rsa_oaep_label sets |*out_label| to point to the internal
647 * buffer containing the OAEP label (which may be NULL) and returns the length
David Benjamine0ba4ddd2015-03-10 17:10:22 -0400648 * of the label or a negative value on error.
649 *
650 * WARNING: the return value differs from the usual return value convention. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700651OPENSSL_EXPORT int EVP_PKEY_CTX_get0_rsa_oaep_label(EVP_PKEY_CTX *ctx,
652 const uint8_t **out_label);
Adam Langley95c29f32014-06-20 12:00:00 -0700653
654
Adam Langley95c29f32014-06-20 12:00:00 -0700655/* Private functions */
656
657/* OpenSSL_add_all_algorithms does nothing. */
David Benjaminc44d2f42014-08-20 16:24:00 -0400658OPENSSL_EXPORT void OpenSSL_add_all_algorithms(void);
Adam Langley95c29f32014-06-20 12:00:00 -0700659
660/* EVP_cleanup does nothing. */
David Benjaminc44d2f42014-08-20 16:24:00 -0400661OPENSSL_EXPORT void EVP_cleanup(void);
Adam Langley95c29f32014-06-20 12:00:00 -0700662
663/* EVP_PKEY_asn1_find returns the ASN.1 method table for the given |nid|, which
664 * should be one of the |EVP_PKEY_*| values. It returns NULL if |nid| is
665 * unknown. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700666OPENSSL_EXPORT const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pengine,
667 int nid);
Adam Langley95c29f32014-06-20 12:00:00 -0700668
669/* TODO(fork): move to PEM? */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700670OPENSSL_EXPORT const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(
671 ENGINE **pengine, const char *name, size_t len);
Adam Langley95c29f32014-06-20 12:00:00 -0700672
673struct evp_pkey_st {
674 int references;
675
676 /* type contains one of the EVP_PKEY_* values or NID_undef and determines
677 * which element (if any) of the |pkey| union is valid. */
678 int type;
679
Adam Langley95c29f32014-06-20 12:00:00 -0700680 union {
681 char *ptr;
682 struct rsa_st *rsa; /* RSA */
683 struct dsa_st *dsa; /* DSA */
684 struct dh_st *dh; /* DH */
685 struct ec_key_st *ec; /* ECC */
686 } pkey;
687
Adam Langley95c29f32014-06-20 12:00:00 -0700688 /* ameth contains a pointer to a method table that contains many ASN.1
689 * methods for the key type. */
690 const EVP_PKEY_ASN1_METHOD *ameth;
Adam Langley95c29f32014-06-20 12:00:00 -0700691} /* EVP_PKEY */;
692
693
694#if defined(__cplusplus)
695} /* extern C */
696#endif
697
David Benjamin689be0f2015-02-11 15:55:26 -0500698#define EVP_F_EVP_DigestSignAlgorithm 100
699#define EVP_F_EVP_DigestVerifyInitFromAlgorithm 101
700#define EVP_F_EVP_PKEY_CTX_ctrl 102
701#define EVP_F_EVP_PKEY_CTX_dup 103
702#define EVP_F_EVP_PKEY_copy_parameters 104
703#define EVP_F_EVP_PKEY_decrypt 105
704#define EVP_F_EVP_PKEY_decrypt_init 106
705#define EVP_F_EVP_PKEY_derive 107
706#define EVP_F_EVP_PKEY_derive_init 108
707#define EVP_F_EVP_PKEY_derive_set_peer 109
708#define EVP_F_EVP_PKEY_encrypt 110
709#define EVP_F_EVP_PKEY_encrypt_init 111
710#define EVP_F_EVP_PKEY_get1_DH 112
711#define EVP_F_EVP_PKEY_get1_DSA 113
712#define EVP_F_EVP_PKEY_get1_EC_KEY 114
713#define EVP_F_EVP_PKEY_get1_RSA 115
Adam Langley95c29f32014-06-20 12:00:00 -0700714#define EVP_F_EVP_PKEY_keygen 116
David Benjamin689be0f2015-02-11 15:55:26 -0500715#define EVP_F_EVP_PKEY_keygen_init 117
716#define EVP_F_EVP_PKEY_new 118
717#define EVP_F_EVP_PKEY_set_type 119
718#define EVP_F_EVP_PKEY_sign 120
719#define EVP_F_EVP_PKEY_sign_init 121
720#define EVP_F_EVP_PKEY_verify 122
721#define EVP_F_EVP_PKEY_verify_init 123
722#define EVP_F_check_padding_md 124
723#define EVP_F_d2i_AutoPrivateKey 125
724#define EVP_F_d2i_PrivateKey 126
725#define EVP_F_do_EC_KEY_print 127
726#define EVP_F_do_rsa_print 128
727#define EVP_F_do_sigver_init 129
728#define EVP_F_eckey_param2type 130
Adam Langley95c29f32014-06-20 12:00:00 -0700729#define EVP_F_eckey_param_decode 131
David Benjamin689be0f2015-02-11 15:55:26 -0500730#define EVP_F_eckey_priv_decode 132
731#define EVP_F_eckey_priv_encode 133
732#define EVP_F_eckey_pub_decode 134
733#define EVP_F_eckey_pub_encode 135
734#define EVP_F_eckey_type2param 136
735#define EVP_F_evp_pkey_ctx_new 137
736#define EVP_F_hmac_signctx 138
737#define EVP_F_i2d_PublicKey 139
738#define EVP_F_old_ec_priv_decode 140
739#define EVP_F_old_rsa_priv_decode 141
740#define EVP_F_pkey_ec_ctrl 142
741#define EVP_F_pkey_ec_derive 143
742#define EVP_F_pkey_ec_keygen 144
743#define EVP_F_pkey_ec_paramgen 145
744#define EVP_F_pkey_ec_sign 146
745#define EVP_F_pkey_rsa_ctrl 147
746#define EVP_F_pkey_rsa_decrypt 148
747#define EVP_F_pkey_rsa_encrypt 149
748#define EVP_F_pkey_rsa_sign 150
749#define EVP_F_rsa_algor_to_md 151
750#define EVP_F_rsa_digest_verify_init_from_algorithm 152
751#define EVP_F_rsa_mgf1_to_md 153
752#define EVP_F_rsa_priv_decode 154
753#define EVP_F_rsa_priv_encode 155
754#define EVP_F_rsa_pss_to_ctx 156
755#define EVP_F_rsa_pub_decode 157
David Benjamine6020272015-03-10 16:47:13 -0400756#define EVP_F_pkey_hmac_ctrl 158
David Benjaminbc5d8ee2015-03-10 16:56:35 -0400757#define EVP_F_EVP_PKEY_CTX_get0_rsa_oaep_label 159
David Benjamin689be0f2015-02-11 15:55:26 -0500758#define EVP_R_BUFFER_TOO_SMALL 100
759#define EVP_R_COMMAND_NOT_SUPPORTED 101
760#define EVP_R_CONTEXT_NOT_INITIALISED 102
761#define EVP_R_DECODE_ERROR 103
762#define EVP_R_DIFFERENT_KEY_TYPES 104
763#define EVP_R_DIFFERENT_PARAMETERS 105
764#define EVP_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 106
765#define EVP_R_EXPECTING_AN_EC_KEY_KEY 107
766#define EVP_R_EXPECTING_AN_RSA_KEY 108
767#define EVP_R_EXPECTING_A_DH_KEY 109
768#define EVP_R_EXPECTING_A_DSA_KEY 110
769#define EVP_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE 111
770#define EVP_R_INVALID_CURVE 112
771#define EVP_R_INVALID_DIGEST_LENGTH 113
772#define EVP_R_INVALID_DIGEST_TYPE 114
773#define EVP_R_INVALID_KEYBITS 115
774#define EVP_R_INVALID_MGF1_MD 116
775#define EVP_R_INVALID_OPERATION 117
776#define EVP_R_INVALID_PADDING_MODE 118
777#define EVP_R_INVALID_PSS_PARAMETERS 119
778#define EVP_R_INVALID_PSS_SALTLEN 120
779#define EVP_R_INVALID_SALT_LENGTH 121
780#define EVP_R_INVALID_TRAILER 122
781#define EVP_R_KEYS_NOT_SET 123
782#define EVP_R_MISSING_PARAMETERS 124
783#define EVP_R_NO_DEFAULT_DIGEST 125
784#define EVP_R_NO_KEY_SET 126
785#define EVP_R_NO_MDC2_SUPPORT 127
786#define EVP_R_NO_NID_FOR_CURVE 128
787#define EVP_R_NO_OPERATION_SET 129
788#define EVP_R_NO_PARAMETERS_SET 130
789#define EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 131
790#define EVP_R_OPERATON_NOT_INITIALIZED 132
791#define EVP_R_UNKNOWN_DIGEST 133
792#define EVP_R_UNKNOWN_MASK_DIGEST 134
793#define EVP_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 135
794#define EVP_R_UNKNOWN_PUBLIC_KEY_TYPE 136
795#define EVP_R_UNKNOWN_SIGNATURE_ALGORITHM 137
796#define EVP_R_UNSUPPORTED_ALGORITHM 138
797#define EVP_R_UNSUPPORTED_MASK_ALGORITHM 139
Adam Langley95c29f32014-06-20 12:00:00 -0700798#define EVP_R_UNSUPPORTED_MASK_PARAMETER 140
David Benjamin689be0f2015-02-11 15:55:26 -0500799#define EVP_R_UNSUPPORTED_PUBLIC_KEY_TYPE 141
800#define EVP_R_UNSUPPORTED_SIGNATURE_TYPE 142
801#define EVP_R_WRONG_PUBLIC_KEY_TYPE 143
Adam Langley95c29f32014-06-20 12:00:00 -0700802
803#endif /* OPENSSL_HEADER_EVP_H */