Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 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 | |
| 57 | #ifndef OPENSSL_HEADER_EVP_H |
| 58 | #define OPENSSL_HEADER_EVP_H |
| 59 | |
| 60 | #include <openssl/base.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 61 | |
Adam Langley | 0da323a | 2015-05-15 12:49:30 -0700 | [diff] [blame] | 62 | #include <openssl/thread.h> |
| 63 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 64 | /* OpenSSL included digest and cipher functions in this header so we include |
Adam Langley | fd772a5 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 65 | * them for users that still expect that. |
| 66 | * |
| 67 | * TODO(fork): clean up callers so that they include what they use. */ |
| 68 | #include <openssl/aead.h> |
Matt Braithwaite | 5acf6b5 | 2015-08-03 11:18:11 -0700 | [diff] [blame] | 69 | #include <openssl/base64.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 70 | #include <openssl/cipher.h> |
| 71 | #include <openssl/digest.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 72 | #include <openssl/obj.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 73 | |
| 74 | #if defined(__cplusplus) |
| 75 | extern "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 Benjamin | c44d2f4 | 2014-08-20 16:24:00 -0400 | [diff] [blame] | 86 | OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_new(void); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 87 | |
| 88 | /* EVP_PKEY_free frees all data referenced by |pkey| and then frees |pkey| |
| 89 | * itself. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 90 | OPENSSL_EXPORT void EVP_PKEY_free(EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 91 | |
Adam Langley | 517da2f | 2015-05-05 10:27:54 -0700 | [diff] [blame] | 92 | /* EVP_PKEY_up_ref increments the reference count of |pkey| and returns it. */ |
| 93 | OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_up_ref(EVP_PKEY *pkey); |
| 94 | |
David Benjamin | ecc0ce7 | 2014-07-18 18:39:42 -0400 | [diff] [blame] | 95 | /* EVP_PKEY_is_opaque returns one if |pkey| is opaque. Opaque keys are backed by |
| 96 | * custom implementations which do not expose key material and parameters. It is |
| 97 | * an error to attempt to duplicate, export, or compare an opaque key. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 98 | OPENSSL_EXPORT int EVP_PKEY_is_opaque(const EVP_PKEY *pkey); |
David Benjamin | ecc0ce7 | 2014-07-18 18:39:42 -0400 | [diff] [blame] | 99 | |
David Benjamin | c20febe | 2014-11-11 23:47:50 -0500 | [diff] [blame] | 100 | /* EVP_PKEY_supports_digest returns one if |pkey| supports digests of |
| 101 | * type |md|. This is intended for use with EVP_PKEYs backing custom |
| 102 | * implementations which can't sign all digests. */ |
| 103 | OPENSSL_EXPORT int EVP_PKEY_supports_digest(const EVP_PKEY *pkey, |
| 104 | const EVP_MD *md); |
| 105 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 106 | /* EVP_PKEY_cmp compares |a| and |b| and returns one if they are equal, zero if |
| 107 | * not and a negative number on error. |
| 108 | * |
| 109 | * WARNING: this differs from the traditional return value of a "cmp" |
| 110 | * function. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 111 | OPENSSL_EXPORT int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 112 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 113 | /* EVP_PKEY_copy_parameters sets the parameters of |to| to equal the parameters |
| 114 | * of |from|. It returns one on success and zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 115 | OPENSSL_EXPORT int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 116 | |
| 117 | /* EVP_PKEY_missing_parameters returns one if |pkey| is missing needed |
| 118 | * parameters or zero if not, or if the algorithm doesn't take parameters. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 119 | OPENSSL_EXPORT int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 120 | |
David Benjamin | 0673215 | 2015-03-18 16:30:04 -0400 | [diff] [blame] | 121 | /* EVP_PKEY_size returns the maximum size, in bytes, of a signature signed by |
| 122 | * |pkey|. For an RSA key, this returns the number of bytes needed to represent |
| 123 | * the modulus. For an EC key, this returns the maximum size of a DER-encoded |
| 124 | * ECDSA signature. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 125 | OPENSSL_EXPORT int EVP_PKEY_size(const EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 126 | |
David Benjamin | 0673215 | 2015-03-18 16:30:04 -0400 | [diff] [blame] | 127 | /* EVP_PKEY_bits returns the "size", in bits, of |pkey|. For an RSA key, this |
| 128 | * returns the bit length of the modulus. For an EC key, this returns the bit |
| 129 | * length of the group order. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 130 | OPENSSL_EXPORT int EVP_PKEY_bits(EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 131 | |
| 132 | /* EVP_PKEY_id returns the type of |pkey|, which is one of the |EVP_PKEY_*| |
| 133 | * values. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 134 | OPENSSL_EXPORT int EVP_PKEY_id(const EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 135 | |
| 136 | /* EVP_PKEY_type returns a canonicalised form of |NID|. For example, |
| 137 | * |EVP_PKEY_RSA2| will be turned into |EVP_PKEY_RSA|. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 138 | OPENSSL_EXPORT int EVP_PKEY_type(int nid); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 139 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 140 | |
| 141 | /* Getting and setting concrete public key types. |
| 142 | * |
| 143 | * The following functions get and set the underlying public key in an |
Adam Langley | 389e3f0 | 2014-08-19 11:24:27 -0700 | [diff] [blame] | 144 | * |EVP_PKEY| object. The |set1| functions take an additional reference to the |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 145 | * underlying key and return one on success or zero on error. The |assign| |
David Benjamin | 758d127 | 2015-11-20 17:47:25 -0500 | [diff] [blame] | 146 | * functions adopt the caller's reference. The |get1| functions return a fresh |
| 147 | * reference to the underlying object or NULL if |pkey| is not of the correct |
| 148 | * type. The |get0| functions behave the same but return a non-owning |
| 149 | * pointer. */ |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 150 | |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 151 | OPENSSL_EXPORT int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key); |
| 152 | OPENSSL_EXPORT int EVP_PKEY_assign_RSA(EVP_PKEY *pkey, RSA *key); |
David Benjamin | 758d127 | 2015-11-20 17:47:25 -0500 | [diff] [blame] | 153 | OPENSSL_EXPORT RSA *EVP_PKEY_get0_RSA(EVP_PKEY *pkey); |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 154 | OPENSSL_EXPORT RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 155 | |
David Benjamin | e6d1e5a | 2015-11-06 16:13:40 -0500 | [diff] [blame] | 156 | OPENSSL_EXPORT int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key); |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 157 | OPENSSL_EXPORT int EVP_PKEY_assign_DSA(EVP_PKEY *pkey, DSA *key); |
David Benjamin | 758d127 | 2015-11-20 17:47:25 -0500 | [diff] [blame] | 158 | OPENSSL_EXPORT DSA *EVP_PKEY_get0_DSA(EVP_PKEY *pkey); |
David Benjamin | e6d1e5a | 2015-11-06 16:13:40 -0500 | [diff] [blame] | 159 | OPENSSL_EXPORT DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 160 | |
David Benjamin | e6d1e5a | 2015-11-06 16:13:40 -0500 | [diff] [blame] | 161 | OPENSSL_EXPORT int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key); |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 162 | OPENSSL_EXPORT int EVP_PKEY_assign_EC_KEY(EVP_PKEY *pkey, EC_KEY *key); |
David Benjamin | 758d127 | 2015-11-20 17:47:25 -0500 | [diff] [blame] | 163 | OPENSSL_EXPORT EC_KEY *EVP_PKEY_get0_EC_KEY(EVP_PKEY *pkey); |
David Benjamin | e6d1e5a | 2015-11-06 16:13:40 -0500 | [diff] [blame] | 164 | OPENSSL_EXPORT EC_KEY *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 165 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 166 | #define EVP_PKEY_NONE NID_undef |
| 167 | #define EVP_PKEY_RSA NID_rsaEncryption |
| 168 | #define EVP_PKEY_RSA2 NID_rsa |
| 169 | #define EVP_PKEY_DSA NID_dsa |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 170 | #define EVP_PKEY_EC NID_X9_62_id_ecPublicKey |
David Benjamin | e9e3837 | 2014-12-23 12:26:22 -0500 | [diff] [blame] | 171 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 172 | /* EVP_PKEY_assign sets the underlying key of |pkey| to |key|, which must be of |
| 173 | * the given type. The |type| argument should be one of the |EVP_PKEY_*| |
| 174 | * values. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 175 | OPENSSL_EXPORT int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 176 | |
| 177 | /* EVP_PKEY_set_type sets the type of |pkey| to |type|, which should be one of |
| 178 | * the |EVP_PKEY_*| values. It returns one if sucessful or zero otherwise. If |
| 179 | * |pkey| is NULL, it simply reports whether the type is known. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 180 | OPENSSL_EXPORT int EVP_PKEY_set_type(EVP_PKEY *pkey, int type); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 181 | |
| 182 | /* EVP_PKEY_cmp_parameters compares the parameters of |a| and |b|. It returns |
| 183 | * one if they match, zero if not, or a negative number of on error. |
| 184 | * |
| 185 | * WARNING: the return value differs from the usual return value convention. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 186 | OPENSSL_EXPORT int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, |
| 187 | const EVP_PKEY *b); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 188 | |
| 189 | |
| 190 | /* ASN.1 functions */ |
| 191 | |
| 192 | /* d2i_PrivateKey parses an ASN.1, DER-encoded, private key from |len| bytes at |
| 193 | * |*inp|. If |out| is not NULL then, on exit, a pointer to the result is in |
| 194 | * |*out|. If |*out| is already non-NULL on entry then the result is written |
Adam Langley | 6288218 | 2016-01-14 09:32:24 -0800 | [diff] [blame] | 195 | * directly into |*out|, otherwise a fresh |EVP_PKEY| is allocated. However, |
| 196 | * one should not depend on writing into |*out| because this behaviour is |
| 197 | * likely to change in the future. On successful exit, |*inp| is advanced past |
| 198 | * the DER structure. It returns the result or NULL on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 199 | OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **out, |
| 200 | const uint8_t **inp, long len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 201 | |
| 202 | /* d2i_AutoPrivateKey acts the same as |d2i_PrivateKey|, but detects the type |
| 203 | * of the private key. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 204 | OPENSSL_EXPORT EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **out, const uint8_t **inp, |
| 205 | long len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 206 | |
| 207 | /* i2d_PrivateKey marshals a private key from |key| to an ASN.1, DER |
| 208 | * structure. If |outp| is not NULL then the result is written to |*outp| and |
| 209 | * |*outp| is advanced just past the output. It returns the number of bytes in |
| 210 | * the result, whether written or not, or a negative value on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 211 | OPENSSL_EXPORT int i2d_PrivateKey(const EVP_PKEY *key, uint8_t **outp); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 212 | |
David Benjamin | 7e5f594 | 2015-06-12 01:30:48 -0400 | [diff] [blame] | 213 | /* i2d_PublicKey marshals a public key from |key| to a type-specific format. |
| 214 | * If |outp| is not NULL then the result is written to |*outp| and |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 215 | * |*outp| is advanced just past the output. It returns the number of bytes in |
David Benjamin | 7e5f594 | 2015-06-12 01:30:48 -0400 | [diff] [blame] | 216 | * the result, whether written or not, or a negative value on error. |
| 217 | * |
| 218 | * RSA keys are serialized as a DER-encoded RSAPublicKey (RFC 3447) structure. |
| 219 | * EC keys are serialized as an EC point per SEC 1. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 220 | OPENSSL_EXPORT int i2d_PublicKey(EVP_PKEY *key, uint8_t **outp); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 221 | |
| 222 | |
| 223 | /* Signing */ |
| 224 | |
| 225 | /* EVP_DigestSignInit sets up |ctx| for a signing operation with |type| and |
| 226 | * |pkey|. The |ctx| argument must have been initialised with |
| 227 | * |EVP_MD_CTX_init|. If |pctx| is not NULL, the |EVP_PKEY_CTX| of the signing |
| 228 | * operation will be written to |*pctx|; this can be used to set alternative |
| 229 | * signing options. |
| 230 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 231 | * It returns one on success, or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 232 | OPENSSL_EXPORT int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, |
| 233 | const EVP_MD *type, ENGINE *e, |
| 234 | EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 235 | |
| 236 | /* EVP_DigestSignUpdate appends |len| bytes from |data| to the data which will |
David Benjamin | 2c36792 | 2015-05-27 01:41:01 -0400 | [diff] [blame] | 237 | * be signed in |EVP_DigestSignFinal|. It returns one. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 238 | OPENSSL_EXPORT int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *data, |
| 239 | size_t len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 240 | |
| 241 | /* EVP_DigestSignFinal signs the data that has been included by one or more |
| 242 | * calls to |EVP_DigestSignUpdate|. If |out_sig| is NULL then |*out_sig_len| is |
| 243 | * set to the maximum number of output bytes. Otherwise, on entry, |
| 244 | * |*out_sig_len| must contain the length of the |out_sig| buffer. If the call |
| 245 | * is successful, the signature is written to |out_sig| and |*out_sig_len| is |
| 246 | * set to its length. |
| 247 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 248 | * It returns one on success, or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 249 | OPENSSL_EXPORT int EVP_DigestSignFinal(EVP_MD_CTX *ctx, uint8_t *out_sig, |
| 250 | size_t *out_sig_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 251 | |
David Benjamin | 8f160a6 | 2014-10-09 14:50:20 -0400 | [diff] [blame] | 252 | /* EVP_DigestSignAlgorithm encodes the signing parameters of |ctx| as an |
| 253 | * AlgorithmIdentifer and saves the result in |algor|. |
| 254 | * |
| 255 | * It returns one on success, or zero on error. |
| 256 | * |
| 257 | * TODO(davidben): This API should eventually lose the dependency on |
| 258 | * crypto/asn1/. */ |
| 259 | OPENSSL_EXPORT int EVP_DigestSignAlgorithm(EVP_MD_CTX *ctx, X509_ALGOR *algor); |
| 260 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 261 | |
| 262 | /* Verifying */ |
| 263 | |
| 264 | /* EVP_DigestVerifyInit sets up |ctx| for a signature verification operation |
| 265 | * with |type| and |pkey|. The |ctx| argument must have been initialised with |
| 266 | * |EVP_MD_CTX_init|. If |pctx| is not NULL, the |EVP_PKEY_CTX| of the signing |
| 267 | * operation will be written to |*pctx|; this can be used to set alternative |
| 268 | * signing options. |
| 269 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 270 | * It returns one on success, or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 271 | OPENSSL_EXPORT int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, |
| 272 | const EVP_MD *type, ENGINE *e, |
| 273 | EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 274 | |
David Benjamin | 8f160a6 | 2014-10-09 14:50:20 -0400 | [diff] [blame] | 275 | /* EVP_DigestVerifyInitFromAlgorithm sets up |ctx| for a signature verification |
| 276 | * operation with public key |pkey| and parameters from |algor|. The |ctx| |
| 277 | * argument must have been initialised with |EVP_MD_CTX_init|. |
| 278 | * |
| 279 | * It returns one on success, or zero on error. |
| 280 | * |
| 281 | * TODO(davidben): This API should eventually lose the dependency on |
| 282 | * crypto/asn1/. */ |
| 283 | OPENSSL_EXPORT int EVP_DigestVerifyInitFromAlgorithm(EVP_MD_CTX *ctx, |
| 284 | X509_ALGOR *algor, |
| 285 | EVP_PKEY *pkey); |
| 286 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 287 | /* EVP_DigestVerifyUpdate appends |len| bytes from |data| to the data which |
David Benjamin | 2c36792 | 2015-05-27 01:41:01 -0400 | [diff] [blame] | 288 | * will be verified by |EVP_DigestVerifyFinal|. It returns one. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 289 | OPENSSL_EXPORT int EVP_DigestVerifyUpdate(EVP_MD_CTX *ctx, const void *data, |
| 290 | size_t len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 291 | |
| 292 | /* EVP_DigestVerifyFinal verifies that |sig_len| bytes of |sig| are a valid |
| 293 | * signature for the data that has been included by one or more calls to |
David Benjamin | e167976 | 2014-10-28 16:06:56 -0400 | [diff] [blame] | 294 | * |EVP_DigestVerifyUpdate|. It returns one on success and zero otherwise. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 295 | OPENSSL_EXPORT int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig, |
| 296 | size_t sig_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 297 | |
| 298 | |
| 299 | /* Signing (old functions) */ |
| 300 | |
| 301 | /* EVP_SignInit_ex configures |ctx|, which must already have been initialised, |
| 302 | * for a fresh signing operation using the hash function |type|. It returns one |
| 303 | * on success and zero otherwise. |
| 304 | * |
| 305 | * (In order to initialise |ctx|, either obtain it initialised with |
| 306 | * |EVP_MD_CTX_create|, or use |EVP_MD_CTX_init|.) */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 307 | OPENSSL_EXPORT int EVP_SignInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, |
| 308 | ENGINE *impl); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 309 | |
| 310 | /* EVP_SignInit is a deprecated version of |EVP_SignInit_ex|. |
| 311 | * |
| 312 | * TODO(fork): remove. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 313 | OPENSSL_EXPORT int EVP_SignInit(EVP_MD_CTX *ctx, const EVP_MD *type); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 314 | |
| 315 | /* EVP_SignUpdate appends |len| bytes from |data| to the data which will be |
| 316 | * signed in |EVP_SignFinal|. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 317 | OPENSSL_EXPORT int EVP_SignUpdate(EVP_MD_CTX *ctx, const void *data, |
| 318 | size_t len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 319 | |
| 320 | /* EVP_SignFinal signs the data that has been included by one or more calls to |
| 321 | * |EVP_SignUpdate|, using the key |pkey|, and writes it to |sig|. On entry, |
| 322 | * |sig| must point to at least |EVP_PKEY_size(pkey)| bytes of space. The |
| 323 | * actual size of the signature is written to |*out_sig_len|. |
| 324 | * |
| 325 | * It returns one on success and zero otherwise. |
| 326 | * |
| 327 | * It does not modify |ctx|, thus it's possible to continue to use |ctx| in |
| 328 | * order to sign a longer message. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 329 | OPENSSL_EXPORT int EVP_SignFinal(const EVP_MD_CTX *ctx, uint8_t *sig, |
| 330 | unsigned int *out_sig_len, EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 331 | |
| 332 | |
| 333 | /* Verifying (old functions) */ |
| 334 | |
| 335 | /* EVP_VerifyInit_ex configures |ctx|, which must already have been |
| 336 | * initialised, for a fresh signature verification operation using the hash |
| 337 | * function |type|. It returns one on success and zero otherwise. |
| 338 | * |
| 339 | * (In order to initialise |ctx|, either obtain it initialised with |
| 340 | * |EVP_MD_CTX_create|, or use |EVP_MD_CTX_init|.) */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 341 | OPENSSL_EXPORT int EVP_VerifyInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, |
| 342 | ENGINE *impl); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 343 | |
| 344 | /* EVP_VerifyInit is a deprecated version of |EVP_VerifyInit_ex|. |
| 345 | * |
| 346 | * TODO(fork): remove. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 347 | OPENSSL_EXPORT int EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 348 | |
| 349 | /* EVP_VerifyUpdate appends |len| bytes from |data| to the data which will be |
| 350 | * signed in |EVP_VerifyFinal|. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 351 | OPENSSL_EXPORT int EVP_VerifyUpdate(EVP_MD_CTX *ctx, const void *data, |
| 352 | size_t len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 353 | |
| 354 | /* EVP_VerifyFinal verifies that |sig_len| bytes of |sig| are a valid |
| 355 | * signature, by |pkey|, for the data that has been included by one or more |
| 356 | * calls to |EVP_VerifyUpdate|. |
| 357 | * |
| 358 | * It returns one on success and zero otherwise. |
| 359 | * |
| 360 | * It does not modify |ctx|, thus it's possible to continue to use |ctx| in |
| 361 | * order to sign a longer message. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 362 | OPENSSL_EXPORT int EVP_VerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig, |
| 363 | size_t sig_len, EVP_PKEY *pkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 364 | |
| 365 | |
| 366 | /* Printing */ |
| 367 | |
| 368 | /* EVP_PKEY_print_public prints a textual representation of the public key in |
| 369 | * |pkey| to |out|. Returns one on success or zero otherwise. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 370 | OPENSSL_EXPORT int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey, |
| 371 | int indent, ASN1_PCTX *pctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 372 | |
Kenny Root | 3a9e1fb | 2015-06-10 14:52:40 -0700 | [diff] [blame] | 373 | /* EVP_PKEY_print_private prints a textual representation of the private key in |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 374 | * |pkey| to |out|. Returns one on success or zero otherwise. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 375 | OPENSSL_EXPORT int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey, |
| 376 | int indent, ASN1_PCTX *pctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 377 | |
Kenny Root | 3a9e1fb | 2015-06-10 14:52:40 -0700 | [diff] [blame] | 378 | /* EVP_PKEY_print_params prints a textual representation of the parameters in |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 379 | * |pkey| to |out|. Returns one on success or zero otherwise. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 380 | OPENSSL_EXPORT int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey, |
| 381 | int indent, ASN1_PCTX *pctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 382 | |
| 383 | |
| 384 | /* Password stretching. |
| 385 | * |
| 386 | * Password stretching functions take a low-entropy password and apply a slow |
| 387 | * function that results in a key suitable for use in symmetric |
| 388 | * cryptography. */ |
| 389 | |
| 390 | /* PKCS5_PBKDF2_HMAC computes |iterations| iterations of PBKDF2 of |password| |
| 391 | * and |salt|, using |digest|, and outputs |key_len| bytes to |out_key|. It |
| 392 | * returns one on success and zero on error. */ |
Eric Roman | 4dcb057 | 2015-01-20 12:19:13 -0800 | [diff] [blame] | 393 | OPENSSL_EXPORT int PKCS5_PBKDF2_HMAC(const char *password, size_t password_len, |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 394 | const uint8_t *salt, size_t salt_len, |
| 395 | unsigned iterations, const EVP_MD *digest, |
| 396 | size_t key_len, uint8_t *out_key); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 397 | |
| 398 | /* PKCS5_PBKDF2_HMAC_SHA1 is the same as PKCS5_PBKDF2_HMAC, but with |digest| |
| 399 | * fixed to |EVP_sha1|. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 400 | OPENSSL_EXPORT int PKCS5_PBKDF2_HMAC_SHA1(const char *password, |
Eric Roman | 4dcb057 | 2015-01-20 12:19:13 -0800 | [diff] [blame] | 401 | size_t password_len, const uint8_t *salt, |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 402 | size_t salt_len, unsigned iterations, |
| 403 | size_t key_len, uint8_t *out_key); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 404 | |
| 405 | |
| 406 | /* Public key contexts. |
| 407 | * |
| 408 | * |EVP_PKEY_CTX| objects hold the context of an operation (e.g. signing or |
| 409 | * encrypting) that uses a public key. */ |
| 410 | |
| 411 | /* EVP_PKEY_CTX_new allocates a fresh |EVP_PKEY_CTX| for use with |pkey|. It |
| 412 | * returns the context or NULL on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 413 | OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 414 | |
Kenny Root | 3a9e1fb | 2015-06-10 14:52:40 -0700 | [diff] [blame] | 415 | /* EVP_PKEY_CTX_new_id allocates a fresh |EVP_PKEY_CTX| for a key of type |id| |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 416 | * (e.g. |EVP_PKEY_HMAC|). This can be used for key generation where |
| 417 | * |EVP_PKEY_CTX_new| can't be used because there isn't an |EVP_PKEY| to pass |
| 418 | * it. It returns the context or NULL on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 419 | OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 420 | |
Kenny Root | 3a9e1fb | 2015-06-10 14:52:40 -0700 | [diff] [blame] | 421 | /* EVP_PKEY_CTX_free frees |ctx| and the data it owns. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 422 | OPENSSL_EXPORT void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 423 | |
| 424 | /* EVP_PKEY_CTX_dup allocates a fresh |EVP_PKEY_CTX| and sets it equal to the |
| 425 | * state of |ctx|. It returns the fresh |EVP_PKEY_CTX| or NULL on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 426 | OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 427 | |
| 428 | /* EVP_PKEY_CTX_get0_pkey returns the |EVP_PKEY| associated with |ctx|. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 429 | OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_CTX_get0_pkey(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 430 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 431 | /* EVP_PKEY_sign_init initialises an |EVP_PKEY_CTX| for a signing operation. It |
| 432 | * should be called before |EVP_PKEY_sign|. |
| 433 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 434 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 435 | OPENSSL_EXPORT int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 436 | |
| 437 | /* EVP_PKEY_sign signs |data_len| bytes from |data| using |ctx|. If |sig| is |
David Benjamin | 9b561e6 | 2014-07-09 11:47:42 -0400 | [diff] [blame] | 438 | * NULL, the maximum size of the signature is written to |
| 439 | * |out_sig_len|. Otherwise, |*sig_len| must contain the number of bytes of |
| 440 | * space available at |sig|. If sufficient, the signature will be written to |
| 441 | * |sig| and |*sig_len| updated with the true length. |
| 442 | * |
David Benjamin | e167976 | 2014-10-28 16:06:56 -0400 | [diff] [blame] | 443 | * WARNING: Setting |sig| to NULL only gives the maximum size of the |
| 444 | * signature. The actual signature may be smaller. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 445 | * |
| 446 | * It returns one on success or zero on error. (Note: this differs from |
| 447 | * OpenSSL, which can also return negative values to indicate an error. ) */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 448 | OPENSSL_EXPORT int EVP_PKEY_sign(EVP_PKEY_CTX *ctx, uint8_t *sig, |
| 449 | size_t *sig_len, const uint8_t *data, |
| 450 | size_t data_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 451 | |
| 452 | /* EVP_PKEY_verify_init initialises an |EVP_PKEY_CTX| for a signature |
| 453 | * verification operation. It should be called before |EVP_PKEY_verify|. |
| 454 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 455 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 456 | OPENSSL_EXPORT int EVP_PKEY_verify_init(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 457 | |
| 458 | /* EVP_PKEY_verify verifies that |sig_len| bytes from |sig| are a valid signature |
| 459 | * for |data|. |
| 460 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 461 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 462 | OPENSSL_EXPORT int EVP_PKEY_verify(EVP_PKEY_CTX *ctx, const uint8_t *sig, |
| 463 | size_t sig_len, const uint8_t *data, |
| 464 | size_t data_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 465 | |
| 466 | /* EVP_PKEY_encrypt_init initialises an |EVP_PKEY_CTX| for an encryption |
| 467 | * operation. It should be called before |EVP_PKEY_encrypt|. |
| 468 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 469 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 470 | OPENSSL_EXPORT int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 471 | |
David Benjamin | 9b561e6 | 2014-07-09 11:47:42 -0400 | [diff] [blame] | 472 | /* EVP_PKEY_encrypt encrypts |in_len| bytes from |in|. If |out| is NULL, the |
| 473 | * maximum size of the ciphertext is written to |out_len|. Otherwise, |*out_len| |
| 474 | * must contain the number of bytes of space available at |out|. If sufficient, |
| 475 | * the ciphertext will be written to |out| and |*out_len| updated with the true |
| 476 | * length. |
| 477 | * |
| 478 | * WARNING: Setting |out| to NULL only gives the maximum size of the |
| 479 | * ciphertext. The actual ciphertext may be smaller. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 480 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 481 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 482 | OPENSSL_EXPORT int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, uint8_t *out, |
| 483 | size_t *out_len, const uint8_t *in, |
| 484 | size_t in_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 485 | |
| 486 | /* EVP_PKEY_decrypt_init initialises an |EVP_PKEY_CTX| for a decryption |
| 487 | * operation. It should be called before |EVP_PKEY_decrypt|. |
| 488 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 489 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 490 | OPENSSL_EXPORT int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 491 | |
David Benjamin | 9b561e6 | 2014-07-09 11:47:42 -0400 | [diff] [blame] | 492 | /* EVP_PKEY_decrypt decrypts |in_len| bytes from |in|. If |out| is NULL, the |
| 493 | * maximum size of the plaintext is written to |out_len|. Otherwise, |*out_len| |
| 494 | * must contain the number of bytes of space available at |out|. If sufficient, |
| 495 | * the ciphertext will be written to |out| and |*out_len| updated with the true |
| 496 | * length. |
| 497 | * |
| 498 | * WARNING: Setting |out| to NULL only gives the maximum size of the |
| 499 | * plaintext. The actual plaintext may be smaller. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 500 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 501 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 502 | OPENSSL_EXPORT int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, uint8_t *out, |
| 503 | size_t *out_len, const uint8_t *in, |
| 504 | size_t in_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 505 | |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 506 | /* EVP_PKEY_verify_recover_init initialises an |EVP_PKEY_CTX| for a public-key |
| 507 | * decryption operation. It should be called before |EVP_PKEY_verify_recover|. |
| 508 | * |
| 509 | * Public-key decryption is a very obscure operation that is only implemented |
| 510 | * by RSA keys. It is effectively a signature verification operation that |
| 511 | * returns the signed message directly. It is almost certainly not what you |
| 512 | * want. |
| 513 | * |
| 514 | * It returns one on success or zero on error. */ |
| 515 | OPENSSL_EXPORT int EVP_PKEY_verify_recover_init(EVP_PKEY_CTX *ctx); |
| 516 | |
| 517 | /* EVP_PKEY_verify_recover decrypts |sig_len| bytes from |sig|. If |out| is |
| 518 | * NULL, the maximum size of the plaintext is written to |out_len|. Otherwise, |
| 519 | * |*out_len| must contain the number of bytes of space available at |out|. If |
| 520 | * sufficient, the ciphertext will be written to |out| and |*out_len| updated |
| 521 | * with the true length. |
| 522 | * |
| 523 | * WARNING: Setting |out| to NULL only gives the maximum size of the |
| 524 | * plaintext. The actual plaintext may be smaller. |
| 525 | * |
| 526 | * See the warning about this operation in |EVP_PKEY_verify_recover_init|. It |
| 527 | * is probably not what you want. |
| 528 | * |
| 529 | * It returns one on success or zero on error. */ |
| 530 | OPENSSL_EXPORT int EVP_PKEY_verify_recover(EVP_PKEY_CTX *ctx, uint8_t *out, |
| 531 | size_t *out_len, const uint8_t *sig, |
| 532 | size_t siglen); |
| 533 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 534 | /* EVP_PKEY_derive_init initialises an |EVP_PKEY_CTX| for a key derivation |
| 535 | * operation. It should be called before |EVP_PKEY_derive_set_peer| and |
| 536 | * |EVP_PKEY_derive|. |
| 537 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 538 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 539 | OPENSSL_EXPORT int EVP_PKEY_derive_init(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 540 | |
| 541 | /* EVP_PKEY_derive_set_peer sets the peer's key to be used for key derivation |
| 542 | * by |ctx| to |peer|. It should be called after |EVP_PKEY_derive_init|. (For |
| 543 | * example, this is used to set the peer's key in (EC)DH.) It returns one on |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 544 | * success and zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 545 | OPENSSL_EXPORT int EVP_PKEY_derive_set_peer(EVP_PKEY_CTX *ctx, EVP_PKEY *peer); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 546 | |
| 547 | /* EVP_PKEY_derive derives a shared key between the two keys configured in |
| 548 | * |ctx|. If |key| is non-NULL then, on entry, |out_key_len| must contain the |
| 549 | * amount of space at |key|. If sufficient then the shared key will be written |
| 550 | * to |key| and |*out_key_len| will be set to the length. If |key| is NULL then |
David Benjamin | 9b561e6 | 2014-07-09 11:47:42 -0400 | [diff] [blame] | 551 | * |out_key_len| will be set to the maximum length. |
| 552 | * |
| 553 | * WARNING: Setting |out| to NULL only gives the maximum size of the key. The |
| 554 | * actual key may be smaller. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 555 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 556 | * It returns one on success and zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 557 | OPENSSL_EXPORT int EVP_PKEY_derive(EVP_PKEY_CTX *ctx, uint8_t *key, |
| 558 | size_t *out_key_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 559 | |
| 560 | /* EVP_PKEY_keygen_init initialises an |EVP_PKEY_CTX| for a key generation |
| 561 | * operation. It should be called before |EVP_PKEY_keygen|. |
| 562 | * |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 563 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 564 | OPENSSL_EXPORT int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 565 | |
| 566 | /* EVP_PKEY_keygen performs a key generation operation using the values from |
| 567 | * |ctx| and sets |*ppkey| to a fresh |EVP_PKEY| containing the resulting key. |
Adam Langley | 5129e2d | 2014-07-25 10:06:44 -0700 | [diff] [blame] | 568 | * It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 569 | OPENSSL_EXPORT int EVP_PKEY_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 570 | |
| 571 | |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 572 | /* Generic control functions. */ |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 573 | |
| 574 | /* EVP_PKEY_CTX_set_signature_md sets |md| as the digest to be used in a |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 575 | * signature operation. It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 576 | OPENSSL_EXPORT int EVP_PKEY_CTX_set_signature_md(EVP_PKEY_CTX *ctx, |
| 577 | const EVP_MD *md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 578 | |
| 579 | /* EVP_PKEY_CTX_get_signature_md sets |*out_md| to the digest to be used in a |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 580 | * signature operation. It returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 581 | OPENSSL_EXPORT int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx, |
| 582 | const EVP_MD **out_md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 583 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 584 | |
| 585 | /* RSA specific control functions. */ |
| 586 | |
| 587 | /* EVP_PKEY_CTX_set_rsa_padding sets the padding type to use. It should be one |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 588 | * of the |RSA_*_PADDING| values. Returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 589 | OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_padding(EVP_PKEY_CTX *ctx, int padding); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 590 | |
| 591 | /* EVP_PKEY_CTX_get_rsa_padding sets |*out_padding| to the current padding |
| 592 | * value, which is one of the |RSA_*_PADDING| values. Returns one on success or |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 593 | * zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 594 | OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_padding(EVP_PKEY_CTX *ctx, |
| 595 | int *out_padding); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 596 | |
| 597 | /* EVP_PKEY_CTX_set_rsa_pss_saltlen sets the length of the salt in a PSS-padded |
| 598 | * signature. A value of -1 cause the salt to be the same length as the digest |
| 599 | * in the signature. A value of -2 causes the salt to be the maximum length |
| 600 | * that will fit. Otherwise the value gives the size of the salt in bytes. |
| 601 | * |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 602 | * Returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 603 | OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_pss_saltlen(EVP_PKEY_CTX *ctx, |
| 604 | int salt_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 605 | |
| 606 | /* EVP_PKEY_CTX_get_rsa_pss_saltlen sets |*out_salt_len| to the salt length of |
| 607 | * a PSS-padded signature. See the documentation for |
| 608 | * |EVP_PKEY_CTX_set_rsa_pss_saltlen| for details of the special values that it |
| 609 | * can take. |
| 610 | * |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 611 | * Returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 612 | OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_pss_saltlen(EVP_PKEY_CTX *ctx, |
| 613 | int *out_salt_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 614 | |
| 615 | /* EVP_PKEY_CTX_set_rsa_keygen_bits sets the size of the desired RSA modulus, |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 616 | * in bits, for key generation. Returns one on success or zero on |
| 617 | * error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 618 | OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_keygen_bits(EVP_PKEY_CTX *ctx, |
| 619 | int bits); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 620 | |
| 621 | /* EVP_PKEY_CTX_set_rsa_keygen_pubexp sets |e| as the public exponent for key |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 622 | * generation. Returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 623 | OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, |
| 624 | BIGNUM *e); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 625 | |
| 626 | /* EVP_PKEY_CTX_set_rsa_oaep_md sets |md| as the digest used in OAEP padding. |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 627 | * Returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 628 | OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_oaep_md(EVP_PKEY_CTX *ctx, |
| 629 | const EVP_MD *md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 630 | |
| 631 | /* EVP_PKEY_CTX_get_rsa_oaep_md sets |*out_md| to the digest function used in |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 632 | * OAEP padding. Returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 633 | OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_oaep_md(EVP_PKEY_CTX *ctx, |
| 634 | const EVP_MD **out_md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 635 | |
| 636 | /* EVP_PKEY_CTX_set_rsa_mgf1_md sets |md| as the digest used in MGF1. Returns |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 637 | * one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 638 | OPENSSL_EXPORT int EVP_PKEY_CTX_set_rsa_mgf1_md(EVP_PKEY_CTX *ctx, |
| 639 | const EVP_MD *md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 640 | |
| 641 | /* EVP_PKEY_CTX_get_rsa_mgf1_md sets |*out_md| to the digest function used in |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 642 | * MGF1. Returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 643 | OPENSSL_EXPORT int EVP_PKEY_CTX_get_rsa_mgf1_md(EVP_PKEY_CTX *ctx, |
| 644 | const EVP_MD **out_md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 645 | |
| 646 | /* EVP_PKEY_CTX_set0_rsa_oaep_label sets |label_len| bytes from |label| as the |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 647 | * label used in OAEP. DANGER: On success, this call takes ownership of |label| |
| 648 | * and will call |OPENSSL_free| on it when |ctx| is destroyed. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 649 | * |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 650 | * Returns one on success or zero on error. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 651 | OPENSSL_EXPORT int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx, |
David Benjamin | 719594e | 2015-12-25 01:02:37 -0500 | [diff] [blame] | 652 | uint8_t *label, |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 653 | size_t label_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 654 | |
| 655 | /* EVP_PKEY_CTX_get0_rsa_oaep_label sets |*out_label| to point to the internal |
| 656 | * buffer containing the OAEP label (which may be NULL) and returns the length |
David Benjamin | e0ba4dd | 2015-03-10 17:10:22 -0400 | [diff] [blame] | 657 | * of the label or a negative value on error. |
| 658 | * |
| 659 | * WARNING: the return value differs from the usual return value convention. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 660 | OPENSSL_EXPORT int EVP_PKEY_CTX_get0_rsa_oaep_label(EVP_PKEY_CTX *ctx, |
| 661 | const uint8_t **out_label); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 662 | |
| 663 | |
Adam Langley | 517da2f | 2015-05-05 10:27:54 -0700 | [diff] [blame] | 664 | /* Deprecated functions. */ |
| 665 | |
David Benjamin | c3ae38b | 2015-11-20 17:50:41 -0500 | [diff] [blame] | 666 | /* EVP_PKEY_DH is defined for compatibility, but it is impossible to create an |
| 667 | * |EVP_PKEY| of that type. */ |
| 668 | #define EVP_PKEY_DH NID_dhKeyAgreement |
| 669 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 670 | /* OpenSSL_add_all_algorithms does nothing. */ |
David Benjamin | c44d2f4 | 2014-08-20 16:24:00 -0400 | [diff] [blame] | 671 | OPENSSL_EXPORT void OpenSSL_add_all_algorithms(void); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 672 | |
Matt Braithwaite | 444dce4 | 2015-05-06 16:10:57 -0700 | [diff] [blame] | 673 | /* OpenSSL_add_all_ciphers does nothing. */ |
| 674 | OPENSSL_EXPORT void OpenSSL_add_all_ciphers(void); |
| 675 | |
| 676 | /* OpenSSL_add_all_digests does nothing. */ |
| 677 | OPENSSL_EXPORT void OpenSSL_add_all_digests(void); |
| 678 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 679 | /* EVP_cleanup does nothing. */ |
David Benjamin | c44d2f4 | 2014-08-20 16:24:00 -0400 | [diff] [blame] | 680 | OPENSSL_EXPORT void EVP_cleanup(void); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 681 | |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 682 | OPENSSL_EXPORT void EVP_CIPHER_do_all_sorted( |
| 683 | void (*callback)(const EVP_CIPHER *cipher, const char *name, |
| 684 | const char *unused, void *arg), |
| 685 | void *arg); |
| 686 | |
| 687 | OPENSSL_EXPORT void EVP_MD_do_all_sorted(void (*callback)(const EVP_MD *cipher, |
| 688 | const char *name, |
| 689 | const char *unused, |
| 690 | void *arg), |
| 691 | void *arg); |
David Benjamin | cce5a98 | 2015-06-30 00:20:29 -0400 | [diff] [blame] | 692 | |
| 693 | /* Private functions */ |
| 694 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 695 | /* EVP_PKEY_asn1_find returns the ASN.1 method table for the given |nid|, which |
| 696 | * should be one of the |EVP_PKEY_*| values. It returns NULL if |nid| is |
| 697 | * unknown. */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 698 | OPENSSL_EXPORT const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pengine, |
| 699 | int nid); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 700 | |
Adam Langley | 5f88999 | 2015-11-04 14:05:00 -0800 | [diff] [blame] | 701 | /* EVP_PKEY_asn1_find_str returns an |EVP_PKEY_ASN1_METHOD| by matching values |
| 702 | * of the |len| bytes at |name|. For example, if name equals "EC" then it will |
| 703 | * return an ECC method. The |pengine| argument is ignored. |
| 704 | * |
| 705 | * TODO(fork): move to PEM? */ |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 706 | OPENSSL_EXPORT const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str( |
| 707 | ENGINE **pengine, const char *name, size_t len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 708 | |
| 709 | struct evp_pkey_st { |
Adam Langley | 0da323a | 2015-05-15 12:49:30 -0700 | [diff] [blame] | 710 | CRYPTO_refcount_t references; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 711 | |
| 712 | /* type contains one of the EVP_PKEY_* values or NID_undef and determines |
| 713 | * which element (if any) of the |pkey| union is valid. */ |
| 714 | int type; |
| 715 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 716 | union { |
| 717 | char *ptr; |
David Benjamin | 507b819 | 2015-06-12 01:28:22 -0400 | [diff] [blame] | 718 | RSA *rsa; |
| 719 | DSA *dsa; |
| 720 | DH *dh; |
| 721 | EC_KEY *ec; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 722 | } pkey; |
| 723 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 724 | /* ameth contains a pointer to a method table that contains many ASN.1 |
| 725 | * methods for the key type. */ |
| 726 | const EVP_PKEY_ASN1_METHOD *ameth; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 727 | } /* EVP_PKEY */; |
| 728 | |
| 729 | |
| 730 | #if defined(__cplusplus) |
| 731 | } /* extern C */ |
| 732 | #endif |
| 733 | |
David Benjamin | 689be0f | 2015-02-11 15:55:26 -0500 | [diff] [blame] | 734 | #define EVP_R_BUFFER_TOO_SMALL 100 |
| 735 | #define EVP_R_COMMAND_NOT_SUPPORTED 101 |
David Benjamin | 689be0f | 2015-02-11 15:55:26 -0500 | [diff] [blame] | 736 | #define EVP_R_DIFFERENT_KEY_TYPES 104 |
| 737 | #define EVP_R_DIFFERENT_PARAMETERS 105 |
David Benjamin | 689be0f | 2015-02-11 15:55:26 -0500 | [diff] [blame] | 738 | #define EVP_R_EXPECTING_AN_EC_KEY_KEY 107 |
David Benjamin | 689be0f | 2015-02-11 15:55:26 -0500 | [diff] [blame] | 739 | #define EVP_R_EXPECTING_A_DH_KEY 109 |
| 740 | #define EVP_R_EXPECTING_A_DSA_KEY 110 |
| 741 | #define EVP_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE 111 |
| 742 | #define EVP_R_INVALID_CURVE 112 |
| 743 | #define EVP_R_INVALID_DIGEST_LENGTH 113 |
| 744 | #define EVP_R_INVALID_DIGEST_TYPE 114 |
| 745 | #define EVP_R_INVALID_KEYBITS 115 |
| 746 | #define EVP_R_INVALID_MGF1_MD 116 |
David Benjamin | 689be0f | 2015-02-11 15:55:26 -0500 | [diff] [blame] | 747 | #define EVP_R_INVALID_PADDING_MODE 118 |
| 748 | #define EVP_R_INVALID_PSS_PARAMETERS 119 |
David Benjamin | 689be0f | 2015-02-11 15:55:26 -0500 | [diff] [blame] | 749 | #define EVP_R_INVALID_SALT_LENGTH 121 |
| 750 | #define EVP_R_INVALID_TRAILER 122 |
| 751 | #define EVP_R_KEYS_NOT_SET 123 |
| 752 | #define EVP_R_MISSING_PARAMETERS 124 |
| 753 | #define EVP_R_NO_DEFAULT_DIGEST 125 |
| 754 | #define EVP_R_NO_KEY_SET 126 |
| 755 | #define EVP_R_NO_MDC2_SUPPORT 127 |
| 756 | #define EVP_R_NO_NID_FOR_CURVE 128 |
| 757 | #define EVP_R_NO_OPERATION_SET 129 |
| 758 | #define EVP_R_NO_PARAMETERS_SET 130 |
| 759 | #define EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 131 |
| 760 | #define EVP_R_OPERATON_NOT_INITIALIZED 132 |
| 761 | #define EVP_R_UNKNOWN_DIGEST 133 |
| 762 | #define EVP_R_UNKNOWN_MASK_DIGEST 134 |
David Benjamin | 689be0f | 2015-02-11 15:55:26 -0500 | [diff] [blame] | 763 | #define EVP_R_UNSUPPORTED_ALGORITHM 138 |
| 764 | #define EVP_R_UNSUPPORTED_MASK_ALGORITHM 139 |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 765 | #define EVP_R_UNSUPPORTED_MASK_PARAMETER 140 |
Adam Langley | 765b66c | 2015-01-29 17:25:29 -0800 | [diff] [blame] | 766 | #define EVP_R_EXPECTING_AN_RSA_KEY 141 |
| 767 | #define EVP_R_INVALID_OPERATION 142 |
| 768 | #define EVP_R_DECODE_ERROR 143 |
| 769 | #define EVP_R_INVALID_PSS_SALTLEN 144 |
| 770 | #define EVP_R_UNKNOWN_PUBLIC_KEY_TYPE 145 |
| 771 | #define EVP_R_CONTEXT_NOT_INITIALISED 146 |
| 772 | #define EVP_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 147 |
| 773 | #define EVP_R_WRONG_PUBLIC_KEY_TYPE 148 |
| 774 | #define EVP_R_UNKNOWN_SIGNATURE_ALGORITHM 149 |
| 775 | #define EVP_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 150 |
| 776 | #define EVP_R_BN_DECODE_ERROR 151 |
| 777 | #define EVP_R_PARAMETER_ENCODING_ERROR 152 |
| 778 | #define EVP_R_UNSUPPORTED_PUBLIC_KEY_TYPE 153 |
| 779 | #define EVP_R_UNSUPPORTED_SIGNATURE_TYPE 154 |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 780 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 781 | #endif /* OPENSSL_HEADER_EVP_H */ |