1 /* ====================================================================
2 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in
13 * the documentation and/or other materials provided with the
14 * distribution.
15 *
16 * 3. All advertising materials mentioning features or use of this
17 * software must display the following acknowledgment:
18 * "This product includes software developed by the OpenSSL Project
19 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
20 *
21 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
22 * endorse or promote products derived from this software without
23 * prior written permission. For written permission, please contact
24 * openssl-core@OpenSSL.org.
25 *
26 * 5. Products derived from this software may not be called "OpenSSL"
27 * nor may "OpenSSL" appear in their names without prior written
28 * permission of the OpenSSL Project.
29 *
30 * 6. Redistributions of any form whatsoever must retain the following
31 * acknowledgment:
32 * "This product includes software developed by the OpenSSL Project
33 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
34 *
35 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
36 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
39 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
41 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
42 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
46 * OF THE POSSIBILITY OF SUCH DAMAGE.
47 * ====================================================================
48 *
49 * This product includes cryptographic software written by Eric Young
50 * (eay@cryptsoft.com). This product includes software written by Tim
51 * Hudson (tjh@cryptsoft.com). */
52
53 #include <openssl/ecdsa.h>
54
55 #include <assert.h>
56 #include <string.h>
57
58 #include <openssl/bn.h>
59 #include <openssl/err.h>
60 #include <openssl/mem.h>
61 #include <openssl/sha.h>
62 #include <openssl/type_check.h>
63
64 #include "../../internal.h"
65 #include "../bn/internal.h"
66 #include "../ec/internal.h"
67 #include "internal.h"
68
69
70 // digest_to_scalar interprets |digest_len| bytes from |digest| as a scalar for
71 // ECDSA.
digest_to_scalar(const EC_GROUP * group,EC_SCALAR * out,const uint8_t * digest,size_t digest_len)72 static void digest_to_scalar(const EC_GROUP *group, EC_SCALAR *out,
73 const uint8_t *digest, size_t digest_len) {
74 const BIGNUM *order = &group->order;
75 size_t num_bits = BN_num_bits(order);
76 // Need to truncate digest if it is too long: first truncate whole bytes.
77 size_t num_bytes = (num_bits + 7) / 8;
78 if (digest_len > num_bytes) {
79 digest_len = num_bytes;
80 }
81 bn_big_endian_to_words(out->words, order->width, digest, digest_len);
82
83 // If it is still too long, truncate remaining bits with a shift.
84 if (8 * digest_len > num_bits) {
85 bn_rshift_words(out->words, out->words, 8 - (num_bits & 0x7), order->width);
86 }
87
88 // |out| now has the same bit width as |order|, but this only bounds by
89 // 2*|order|. Subtract the order if out of range.
90 //
91 // Montgomery multiplication accepts the looser bounds, so this isn't strictly
92 // necessary, but it is a cleaner abstraction and has no performance impact.
93 BN_ULONG tmp[EC_MAX_WORDS];
94 bn_reduce_once_in_place(out->words, 0 /* no carry */, order->d, tmp,
95 order->width);
96 }
97
ECDSA_SIG_new(void)98 ECDSA_SIG *ECDSA_SIG_new(void) {
99 ECDSA_SIG *sig = OPENSSL_malloc(sizeof(ECDSA_SIG));
100 if (sig == NULL) {
101 return NULL;
102 }
103 sig->r = BN_new();
104 sig->s = BN_new();
105 if (sig->r == NULL || sig->s == NULL) {
106 ECDSA_SIG_free(sig);
107 return NULL;
108 }
109 return sig;
110 }
111
ECDSA_SIG_free(ECDSA_SIG * sig)112 void ECDSA_SIG_free(ECDSA_SIG *sig) {
113 if (sig == NULL) {
114 return;
115 }
116
117 BN_free(sig->r);
118 BN_free(sig->s);
119 OPENSSL_free(sig);
120 }
121
ECDSA_SIG_get0_r(const ECDSA_SIG * sig)122 const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig) {
123 return sig->r;
124 }
125
ECDSA_SIG_get0_s(const ECDSA_SIG * sig)126 const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig) {
127 return sig->s;
128 }
129
ECDSA_SIG_get0(const ECDSA_SIG * sig,const BIGNUM ** out_r,const BIGNUM ** out_s)130 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **out_r,
131 const BIGNUM **out_s) {
132 if (out_r != NULL) {
133 *out_r = sig->r;
134 }
135 if (out_s != NULL) {
136 *out_s = sig->s;
137 }
138 }
139
ECDSA_SIG_set0(ECDSA_SIG * sig,BIGNUM * r,BIGNUM * s)140 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) {
141 if (r == NULL || s == NULL) {
142 return 0;
143 }
144 BN_free(sig->r);
145 BN_free(sig->s);
146 sig->r = r;
147 sig->s = s;
148 return 1;
149 }
150
ecdsa_do_verify_no_self_test(const uint8_t * digest,size_t digest_len,const ECDSA_SIG * sig,const EC_KEY * eckey)151 int ecdsa_do_verify_no_self_test(const uint8_t *digest, size_t digest_len,
152 const ECDSA_SIG *sig, const EC_KEY *eckey) {
153 const EC_GROUP *group = EC_KEY_get0_group(eckey);
154 const EC_POINT *pub_key = EC_KEY_get0_public_key(eckey);
155 if (group == NULL || pub_key == NULL || sig == NULL) {
156 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_MISSING_PARAMETERS);
157 return 0;
158 }
159
160 EC_SCALAR r, s, u1, u2, s_inv_mont, m;
161 if (BN_is_zero(sig->r) ||
162 !ec_bignum_to_scalar(group, &r, sig->r) ||
163 BN_is_zero(sig->s) ||
164 !ec_bignum_to_scalar(group, &s, sig->s)) {
165 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_BAD_SIGNATURE);
166 return 0;
167 }
168
169 // s_inv_mont = s^-1 in the Montgomery domain.
170 if (!ec_scalar_to_montgomery_inv_vartime(group, &s_inv_mont, &s)) {
171 OPENSSL_PUT_ERROR(ECDSA, ERR_R_INTERNAL_ERROR);
172 return 0;
173 }
174
175 // u1 = m * s^-1 mod order
176 // u2 = r * s^-1 mod order
177 //
178 // |s_inv_mont| is in Montgomery form while |m| and |r| are not, so |u1| and
179 // |u2| will be taken out of Montgomery form, as desired.
180 digest_to_scalar(group, &m, digest, digest_len);
181 ec_scalar_mul_montgomery(group, &u1, &m, &s_inv_mont);
182 ec_scalar_mul_montgomery(group, &u2, &r, &s_inv_mont);
183
184 EC_RAW_POINT point;
185 if (!ec_point_mul_scalar_public(group, &point, &u1, &pub_key->raw, &u2)) {
186 OPENSSL_PUT_ERROR(ECDSA, ERR_R_EC_LIB);
187 return 0;
188 }
189
190 if (!ec_cmp_x_coordinate(group, &point, &r)) {
191 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_BAD_SIGNATURE);
192 return 0;
193 }
194
195 return 1;
196 }
197
ECDSA_do_verify(const uint8_t * digest,size_t digest_len,const ECDSA_SIG * sig,const EC_KEY * eckey)198 int ECDSA_do_verify(const uint8_t *digest, size_t digest_len,
199 const ECDSA_SIG *sig, const EC_KEY *eckey) {
200 boringssl_ensure_ecc_self_test();
201
202 return ecdsa_do_verify_no_self_test(digest, digest_len, sig, eckey);
203 }
204
ecdsa_sign_impl(const EC_GROUP * group,int * out_retry,const EC_SCALAR * priv_key,const EC_SCALAR * k,const uint8_t * digest,size_t digest_len)205 static ECDSA_SIG *ecdsa_sign_impl(const EC_GROUP *group, int *out_retry,
206 const EC_SCALAR *priv_key, const EC_SCALAR *k,
207 const uint8_t *digest, size_t digest_len) {
208 *out_retry = 0;
209
210 // Check that the size of the group order is FIPS compliant (FIPS 186-4
211 // B.5.2).
212 const BIGNUM *order = EC_GROUP_get0_order(group);
213 if (BN_num_bits(order) < 160) {
214 OPENSSL_PUT_ERROR(ECDSA, EC_R_INVALID_GROUP_ORDER);
215 return NULL;
216 }
217
218 // Compute r, the x-coordinate of k * generator.
219 EC_RAW_POINT tmp_point;
220 EC_SCALAR r;
221 if (!ec_point_mul_scalar_base(group, &tmp_point, k) ||
222 !ec_get_x_coordinate_as_scalar(group, &r, &tmp_point)) {
223 return NULL;
224 }
225
226 if (ec_scalar_is_zero(group, &r)) {
227 *out_retry = 1;
228 return NULL;
229 }
230
231 // s = priv_key * r. Note if only one parameter is in the Montgomery domain,
232 // |ec_scalar_mod_mul_montgomery| will compute the answer in the normal
233 // domain.
234 EC_SCALAR s;
235 ec_scalar_to_montgomery(group, &s, &r);
236 ec_scalar_mul_montgomery(group, &s, priv_key, &s);
237
238 // s = m + priv_key * r.
239 EC_SCALAR tmp;
240 digest_to_scalar(group, &tmp, digest, digest_len);
241 ec_scalar_add(group, &s, &s, &tmp);
242
243 // s = k^-1 * (m + priv_key * r). First, we compute k^-1 in the Montgomery
244 // domain. This is |ec_scalar_to_montgomery| followed by
245 // |ec_scalar_inv0_montgomery|, but |ec_scalar_inv0_montgomery| followed by
246 // |ec_scalar_from_montgomery| is equivalent and slightly more efficient.
247 // Then, as above, only one parameter is in the Montgomery domain, so the
248 // result is in the normal domain. Finally, note k is non-zero (or computing r
249 // would fail), so the inverse must exist.
250 ec_scalar_inv0_montgomery(group, &tmp, k); // tmp = k^-1 R^2
251 ec_scalar_from_montgomery(group, &tmp, &tmp); // tmp = k^-1 R
252 ec_scalar_mul_montgomery(group, &s, &s, &tmp);
253 if (ec_scalar_is_zero(group, &s)) {
254 *out_retry = 1;
255 return NULL;
256 }
257
258 ECDSA_SIG *ret = ECDSA_SIG_new();
259 if (ret == NULL || //
260 !bn_set_words(ret->r, r.words, order->width) ||
261 !bn_set_words(ret->s, s.words, order->width)) {
262 ECDSA_SIG_free(ret);
263 return NULL;
264 }
265 return ret;
266 }
267
ecdsa_sign_with_nonce_for_known_answer_test(const uint8_t * digest,size_t digest_len,const EC_KEY * eckey,const uint8_t * nonce,size_t nonce_len)268 ECDSA_SIG *ecdsa_sign_with_nonce_for_known_answer_test(const uint8_t *digest,
269 size_t digest_len,
270 const EC_KEY *eckey,
271 const uint8_t *nonce,
272 size_t nonce_len) {
273 if (eckey->ecdsa_meth && eckey->ecdsa_meth->sign) {
274 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_NOT_IMPLEMENTED);
275 return NULL;
276 }
277
278 const EC_GROUP *group = EC_KEY_get0_group(eckey);
279 if (group == NULL || eckey->priv_key == NULL) {
280 OPENSSL_PUT_ERROR(ECDSA, ERR_R_PASSED_NULL_PARAMETER);
281 return NULL;
282 }
283 const EC_SCALAR *priv_key = &eckey->priv_key->scalar;
284
285 EC_SCALAR k;
286 if (!ec_scalar_from_bytes(group, &k, nonce, nonce_len)) {
287 return NULL;
288 }
289 int retry_ignored;
290 return ecdsa_sign_impl(group, &retry_ignored, priv_key, &k, digest,
291 digest_len);
292 }
293
294 // This function is only exported for testing and is not called in production
295 // code.
ECDSA_sign_with_nonce_and_leak_private_key_for_testing(const uint8_t * digest,size_t digest_len,const EC_KEY * eckey,const uint8_t * nonce,size_t nonce_len)296 ECDSA_SIG *ECDSA_sign_with_nonce_and_leak_private_key_for_testing(
297 const uint8_t *digest, size_t digest_len, const EC_KEY *eckey,
298 const uint8_t *nonce, size_t nonce_len) {
299 boringssl_ensure_ecc_self_test();
300
301 return ecdsa_sign_with_nonce_for_known_answer_test(digest, digest_len, eckey,
302 nonce, nonce_len);
303 }
304
ECDSA_do_sign(const uint8_t * digest,size_t digest_len,const EC_KEY * eckey)305 ECDSA_SIG *ECDSA_do_sign(const uint8_t *digest, size_t digest_len,
306 const EC_KEY *eckey) {
307 boringssl_ensure_ecc_self_test();
308
309 if (eckey->ecdsa_meth && eckey->ecdsa_meth->sign) {
310 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_NOT_IMPLEMENTED);
311 return NULL;
312 }
313
314 const EC_GROUP *group = EC_KEY_get0_group(eckey);
315 if (group == NULL || eckey->priv_key == NULL) {
316 OPENSSL_PUT_ERROR(ECDSA, ERR_R_PASSED_NULL_PARAMETER);
317 return NULL;
318 }
319 const BIGNUM *order = EC_GROUP_get0_order(group);
320 const EC_SCALAR *priv_key = &eckey->priv_key->scalar;
321
322 // Pass a SHA512 hash of the private key and digest as additional data
323 // into the RBG. This is a hardening measure against entropy failure.
324 OPENSSL_STATIC_ASSERT(SHA512_DIGEST_LENGTH >= 32,
325 "additional_data is too large for SHA-512");
326
327 FIPS_service_indicator_lock_state();
328
329 SHA512_CTX sha;
330 uint8_t additional_data[SHA512_DIGEST_LENGTH];
331 SHA512_Init(&sha);
332 SHA512_Update(&sha, priv_key->words, order->width * sizeof(BN_ULONG));
333 SHA512_Update(&sha, digest, digest_len);
334 SHA512_Final(additional_data, &sha);
335
336 ECDSA_SIG *ret = NULL;
337 for (;;) {
338 EC_SCALAR k;
339 if (!ec_random_nonzero_scalar(group, &k, additional_data)) {
340 ret = NULL;
341 goto out;
342 }
343
344 int retry;
345 ret = ecdsa_sign_impl(group, &retry, priv_key, &k, digest, digest_len);
346 if (ret != NULL || !retry) {
347 goto out;
348 }
349 }
350
351 out:
352 FIPS_service_indicator_unlock_state();
353 return ret;
354 }
355