blob: 37f6090a83bd8a16ad37fd3b1c1e9a8f634c3e38 [file] [log] [blame]
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001/*
Manuel Pégourié-Gonnard32b04c12013-12-02 15:49:09 +01002 * Elliptic curves over GF(p): generic functions
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01003 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010018 */
19
20/*
21 * References:
22 *
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +010023 * SEC1 http://www.secg.org/index.php?action=secg,docs_secg
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +010024 * GECC = Guide to Elliptic Curve Cryptography - Hankerson, Menezes, Vanstone
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +010025 * FIPS 186-3 http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +010026 * RFC 4492 for the related TLS structures and constants
Nicholas Wilson08f3ef12015-11-10 13:10:01 +000027 * RFC 7748 for the Curve448 and Curve25519 curve definitions
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +020028 *
Manuel Pégourié-Gonnard07894332015-06-23 00:18:41 +020029 * [Curve25519] http://cr.yp.to/ecdh/curve25519-20060209.pdf
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +010030 *
Manuel Pégourié-Gonnard998930a2015-04-03 13:48:06 +020031 * [2] CORON, Jean-S'ebastien. Resistance against differential power analysis
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +020032 * for elliptic curve cryptosystems. In : Cryptographic Hardware and
33 * Embedded Systems. Springer Berlin Heidelberg, 1999. p. 292-302.
34 * <http://link.springer.com/chapter/10.1007/3-540-48059-5_25>
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +010035 *
Manuel Pégourié-Gonnard998930a2015-04-03 13:48:06 +020036 * [3] HEDABOU, Mustapha, PINEL, Pierre, et B'EN'ETEAU, Lucien. A comb method to
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +010037 * render ECC resistant against Side Channel Attacks. IACR Cryptology
38 * ePrint Archive, 2004, vol. 2004, p. 342.
39 * <http://eprint.iacr.org/2004/342.pdf>
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010040 */
41
Gilles Peskinedb09ef62020-06-03 01:43:33 +020042#include "common.h"
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010043
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050044/**
45 * \brief Function level alternative implementation.
46 *
47 * The MBEDTLS_ECP_INTERNAL_ALT macro enables alternative implementations to
48 * replace certain functions in this module. The alternative implementations are
49 * typically hardware accelerators and need to activate the hardware before the
50 * computation starts and deactivate it after it finishes. The
51 * mbedtls_internal_ecp_init() and mbedtls_internal_ecp_free() functions serve
52 * this purpose.
53 *
54 * To preserve the correct functionality the following conditions must hold:
55 *
56 * - The alternative implementation must be activated by
57 * mbedtls_internal_ecp_init() before any of the replaceable functions is
58 * called.
59 * - mbedtls_internal_ecp_free() must \b only be called when the alternative
60 * implementation is activated.
61 * - mbedtls_internal_ecp_init() must \b not be called when the alternative
62 * implementation is activated.
63 * - Public functions must not return while the alternative implementation is
64 * activated.
65 * - Replaceable functions are guarded by \c MBEDTLS_ECP_XXX_ALT macros and
66 * before calling them an \code if( mbedtls_internal_ecp_grp_capable( grp ) )
67 * \endcode ensures that the alternative implementation supports the current
68 * group.
69 */
70#if defined(MBEDTLS_ECP_INTERNAL_ALT)
71#endif
72
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020073#if defined(MBEDTLS_ECP_C)
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010074
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000075#include "mbedtls/ecp.h"
Janos Follath430d3372016-11-03 14:25:37 +000076#include "mbedtls/threading.h"
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -050077#include "mbedtls/platform_util.h"
Janos Follath24eed8d2019-11-22 13:21:35 +000078#include "mbedtls/error.h"
Paul Bakker6e339b52013-07-03 13:37:05 +020079
Janos Follath8c70e812021-06-24 14:48:38 +010080#include "bn_mul.h"
Gilles Peskine80ba8502021-04-03 20:36:37 +020081#include "ecp_invasive.h"
82
Rich Evans00ab4702015-02-06 13:43:58 +000083#include <string.h>
84
Janos Follathb0697532016-08-18 12:38:46 +010085#if !defined(MBEDTLS_ECP_ALT)
86
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000087#include "mbedtls/platform.h"
Paul Bakker6e339b52013-07-03 13:37:05 +020088
Gilles Peskine6a2fb612021-05-24 22:25:04 +020089#include "ecp_internal_alt.h"
Janos Follathb0697532016-08-18 12:38:46 +010090
Manuel Pégourié-Gonnard0223ab92015-10-05 11:40:01 +010091#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
92 !defined(inline) && !defined(__cplusplus)
Paul Bakker6a6087e2013-10-28 18:53:08 +010093#define inline __inline
Manuel Pégourié-Gonnard20af64d2015-07-07 18:33:39 +020094#endif
Paul Bakker6a6087e2013-10-28 18:53:08 +010095
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020096#if defined(MBEDTLS_SELF_TEST)
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +010097/*
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +010098 * Counts of point addition and doubling, and field multiplications.
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +020099 * Used to test resistance of point multiplication to simple timing attacks.
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +0100100 */
Manuel Pégourié-Gonnard43863ee2013-12-01 16:51:27 +0100101static unsigned long add_count, dbl_count, mul_count;
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +0100102#endif
103
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +0200104#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard054433c2017-03-22 11:18:33 +0100105/*
106 * Maximum number of "basic operations" to be done in a row.
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +0200107 *
108 * Default value 0 means that ECC operations will not yield.
109 * Note that regardless of the value of ecp_max_ops, always at
110 * least one step is performed before yielding.
111 *
112 * Setting ecp_max_ops=1 can be suitable for testing purposes
113 * as it will interrupt computation at all possible points.
Manuel Pégourié-Gonnard054433c2017-03-22 11:18:33 +0100114 */
115static unsigned ecp_max_ops = 0;
116
117/*
118 * Set ecp_max_ops
119 */
120void mbedtls_ecp_set_max_ops( unsigned max_ops )
121{
122 ecp_max_ops = max_ops;
123}
Manuel Pégourié-Gonnard510d5ca2017-03-08 11:41:47 +0100124
125/*
Manuel Pégourié-Gonnarda0c5bcc2017-04-21 11:33:57 +0200126 * Check if restart is enabled
127 */
Manuel Pégourié-Gonnardb843b152018-10-16 10:41:31 +0200128int mbedtls_ecp_restart_is_enabled( void )
Manuel Pégourié-Gonnarda0c5bcc2017-04-21 11:33:57 +0200129{
130 return( ecp_max_ops != 0 );
131}
132
133/*
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200134 * Restart sub-context for ecp_mul_comb()
Manuel Pégourié-Gonnard510d5ca2017-03-08 11:41:47 +0100135 */
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200136struct mbedtls_ecp_restart_mul
137{
Manuel Pégourié-Gonnard8962ddb2017-03-14 12:11:21 +0100138 mbedtls_ecp_point R; /* current intermediate result */
Manuel Pégourié-Gonnardc5d844b2017-03-15 13:06:28 +0100139 size_t i; /* current index in various loops, 0 outside */
Manuel Pégourié-Gonnardc9c0aa62017-03-16 14:53:26 +0100140 mbedtls_ecp_point *T; /* table for precomputed points */
141 unsigned char T_size; /* number of points in table T */
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +0200142 enum { /* what were we doing last time we returned? */
143 ecp_rsm_init = 0, /* nothing so far, dummy initial state */
144 ecp_rsm_pre_dbl, /* precompute 2^n multiples */
Manuel Pégourié-Gonnard45fd0162017-03-22 08:24:42 +0100145 ecp_rsm_pre_norm_dbl, /* normalize precomputed 2^n multiples */
146 ecp_rsm_pre_add, /* precompute remaining points by adding */
147 ecp_rsm_pre_norm_add, /* normalize all precomputed points */
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +0200148 ecp_rsm_comb_core, /* ecp_mul_comb_core() */
Manuel Pégourié-Gonnard45fd0162017-03-22 08:24:42 +0100149 ecp_rsm_final_norm, /* do the final normalization */
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100150 } state;
Manuel Pégourié-Gonnard77af79a2017-03-14 10:58:00 +0100151};
Manuel Pégourié-Gonnard510d5ca2017-03-08 11:41:47 +0100152
153/*
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200154 * Init restart_mul sub-context
Manuel Pégourié-Gonnard510d5ca2017-03-08 11:41:47 +0100155 */
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200156static void ecp_restart_rsm_init( mbedtls_ecp_restart_mul_ctx *ctx )
Manuel Pégourié-Gonnard77af79a2017-03-14 10:58:00 +0100157{
Manuel Pégourié-Gonnard5bd38b12017-08-23 16:55:59 +0200158 mbedtls_ecp_point_init( &ctx->R );
159 ctx->i = 0;
160 ctx->T = NULL;
161 ctx->T_size = 0;
162 ctx->state = ecp_rsm_init;
Manuel Pégourié-Gonnard77af79a2017-03-14 10:58:00 +0100163}
164
165/*
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200166 * Free the components of a restart_mul sub-context
Manuel Pégourié-Gonnard77af79a2017-03-14 10:58:00 +0100167 */
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200168static void ecp_restart_rsm_free( mbedtls_ecp_restart_mul_ctx *ctx )
Manuel Pégourié-Gonnard77af79a2017-03-14 10:58:00 +0100169{
Manuel Pégourié-Gonnardc9c0aa62017-03-16 14:53:26 +0100170 unsigned char i;
171
Manuel Pégourié-Gonnard77af79a2017-03-14 10:58:00 +0100172 if( ctx == NULL )
173 return;
Manuel Pégourié-Gonnard78d564a2017-03-14 11:48:38 +0100174
Manuel Pégourié-Gonnard8962ddb2017-03-14 12:11:21 +0100175 mbedtls_ecp_point_free( &ctx->R );
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100176
Manuel Pégourié-Gonnard31f0ef72017-05-17 10:05:58 +0200177 if( ctx->T != NULL )
178 {
Manuel Pégourié-Gonnardc9c0aa62017-03-16 14:53:26 +0100179 for( i = 0; i < ctx->T_size; i++ )
180 mbedtls_ecp_point_free( ctx->T + i );
181 mbedtls_free( ctx->T );
182 }
183
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200184 ecp_restart_rsm_init( ctx );
Manuel Pégourié-Gonnard77af79a2017-03-14 10:58:00 +0100185}
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100186
187/*
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200188 * Restart context for ecp_muladd()
189 */
190struct mbedtls_ecp_restart_muladd
191{
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +0200192 mbedtls_ecp_point mP; /* mP value */
193 mbedtls_ecp_point R; /* R intermediate result */
194 enum { /* what should we do next? */
195 ecp_rsma_mul1 = 0, /* first multiplication */
196 ecp_rsma_mul2, /* second multiplication */
197 ecp_rsma_add, /* addition */
198 ecp_rsma_norm, /* normalization */
199 } state;
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200200};
201
202/*
203 * Init restart_muladd sub-context
204 */
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200205static void ecp_restart_ma_init( mbedtls_ecp_restart_muladd_ctx *ctx )
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200206{
Manuel Pégourié-Gonnard5bd38b12017-08-23 16:55:59 +0200207 mbedtls_ecp_point_init( &ctx->mP );
208 mbedtls_ecp_point_init( &ctx->R );
209 ctx->state = ecp_rsma_mul1;
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200210}
211
212/*
213 * Free the components of a restart_muladd sub-context
214 */
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200215static void ecp_restart_ma_free( mbedtls_ecp_restart_muladd_ctx *ctx )
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200216{
217 if( ctx == NULL )
218 return;
219
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +0200220 mbedtls_ecp_point_free( &ctx->mP );
221 mbedtls_ecp_point_free( &ctx->R );
222
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200223 ecp_restart_ma_init( ctx );
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +0200224}
225
226/*
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +0200227 * Initialize a restart context
228 */
229void mbedtls_ecp_restart_init( mbedtls_ecp_restart_ctx *ctx )
230{
Manuel Pégourié-Gonnard5bd38b12017-08-23 16:55:59 +0200231 ctx->ops_done = 0;
232 ctx->depth = 0;
233 ctx->rsm = NULL;
234 ctx->ma = NULL;
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +0200235}
236
237/*
238 * Free the components of a restart context
239 */
240void mbedtls_ecp_restart_free( mbedtls_ecp_restart_ctx *ctx )
241{
242 if( ctx == NULL )
243 return;
244
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200245 ecp_restart_rsm_free( ctx->rsm );
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +0200246 mbedtls_free( ctx->rsm );
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +0200247
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200248 ecp_restart_ma_free( ctx->ma );
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +0200249 mbedtls_free( ctx->ma );
Manuel Pégourié-Gonnard5bd38b12017-08-23 16:55:59 +0200250
251 mbedtls_ecp_restart_init( ctx );
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +0200252}
253
254/*
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100255 * Check if we can do the next step
256 */
Manuel Pégourié-Gonnardc7511482017-04-20 16:31:00 +0200257int mbedtls_ecp_check_budget( const mbedtls_ecp_group *grp,
258 mbedtls_ecp_restart_ctx *rs_ctx,
259 unsigned ops )
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100260{
Manuel Pégourié-Gonnard646393b2017-04-20 10:03:45 +0200261 if( rs_ctx != NULL && ecp_max_ops != 0 )
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100262 {
Manuel Pégourié-Gonnarde6854492017-03-20 14:35:19 +0100263 /* scale depending on curve size: the chosen reference is 256-bit,
264 * and multiplication is quadratic. Round to the closest integer. */
265 if( grp->pbits >= 512 )
266 ops *= 4;
267 else if( grp->pbits >= 384 )
268 ops *= 2;
269
Hanno Beckerb10c6602018-10-26 13:50:13 +0100270 /* Avoid infinite loops: always allow first step.
271 * Because of that, however, it's not generally true
272 * that ops_done <= ecp_max_ops, so the check
273 * ops_done > ecp_max_ops below is mandatory. */
274 if( ( rs_ctx->ops_done != 0 ) &&
275 ( rs_ctx->ops_done > ecp_max_ops ||
276 ops > ecp_max_ops - rs_ctx->ops_done ) )
277 {
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100278 return( MBEDTLS_ERR_ECP_IN_PROGRESS );
Hanno Beckerb10c6602018-10-26 13:50:13 +0100279 }
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100280
Manuel Pégourié-Gonnarde6854492017-03-20 14:35:19 +0100281 /* update running count */
Manuel Pégourié-Gonnard646393b2017-04-20 10:03:45 +0200282 rs_ctx->ops_done += ops;
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +0100283 }
284
285 return( 0 );
286}
287
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200288/* Call this when entering a function that needs its own sub-context */
Manuel Pégourié-Gonnarda58e0112018-10-16 10:42:47 +0200289#define ECP_RS_ENTER( SUB ) do { \
290 /* reset ops count for this call if top-level */ \
291 if( rs_ctx != NULL && rs_ctx->depth++ == 0 ) \
292 rs_ctx->ops_done = 0; \
293 \
294 /* set up our own sub-context if needed */ \
295 if( mbedtls_ecp_restart_is_enabled() && \
296 rs_ctx != NULL && rs_ctx->SUB == NULL ) \
297 { \
298 rs_ctx->SUB = mbedtls_calloc( 1, sizeof( *rs_ctx->SUB ) ); \
299 if( rs_ctx->SUB == NULL ) \
300 return( MBEDTLS_ERR_ECP_ALLOC_FAILED ); \
301 \
302 ecp_restart_## SUB ##_init( rs_ctx->SUB ); \
303 } \
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200304} while( 0 )
305
306/* Call this when leaving a function that needs its own sub-context */
Manuel Pégourié-Gonnarda58e0112018-10-16 10:42:47 +0200307#define ECP_RS_LEAVE( SUB ) do { \
308 /* clear our sub-context when not in progress (done or error) */ \
309 if( rs_ctx != NULL && rs_ctx->SUB != NULL && \
310 ret != MBEDTLS_ERR_ECP_IN_PROGRESS ) \
311 { \
312 ecp_restart_## SUB ##_free( rs_ctx->SUB ); \
313 mbedtls_free( rs_ctx->SUB ); \
314 rs_ctx->SUB = NULL; \
315 } \
316 \
317 if( rs_ctx != NULL ) \
318 rs_ctx->depth--; \
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +0200319} while( 0 )
320
321#else /* MBEDTLS_ECP_RESTARTABLE */
322
323#define ECP_RS_ENTER( sub ) (void) rs_ctx;
324#define ECP_RS_LEAVE( sub ) (void) rs_ctx;
325
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +0200326#endif /* MBEDTLS_ECP_RESTARTABLE */
Manuel Pégourié-Gonnard054433c2017-03-22 11:18:33 +0100327
Hanno Beckerbae30232022-01-10 12:25:05 +0000328static void mpi_init_many( mbedtls_mpi *arr, size_t size )
Hanno Becker466df6e2022-01-10 11:16:51 +0000329{
330 while( size-- )
331 mbedtls_mpi_init( arr++ );
332}
333
Hanno Beckerbae30232022-01-10 12:25:05 +0000334static void mpi_free_many( mbedtls_mpi *arr, size_t size )
Hanno Becker466df6e2022-01-10 11:16:51 +0000335{
336 while( size-- )
337 mbedtls_mpi_free( arr++ );
338}
339
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100340/*
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200341 * List of supported curves:
342 * - internal ID
Christoph M. Wintersteigercb310732019-02-15 15:50:38 +0000343 * - TLS NamedCurve ID (RFC 4492 sec. 5.1.1, RFC 7071 sec. 2, RFC 8446 sec. 4.2.7)
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200344 * - size in bits
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200345 * - readable name
Gergely Budaie40c4692014-01-22 11:22:20 +0100346 *
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100347 * Curves are listed in order: largest curves first, and for a given size,
Gilles Peskineae270bf2021-06-02 00:05:29 +0200348 * fastest curves first.
Manuel Pégourié-Gonnard88db5da2015-06-15 14:34:59 +0200349 *
Gilles Peskineae270bf2021-06-02 00:05:29 +0200350 * Reminder: update profiles in x509_crt.c and ssl_tls.c when adding a new curve!
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200351 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200352static const mbedtls_ecp_curve_info ecp_supported_curves[] =
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200353{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200354#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)
355 { MBEDTLS_ECP_DP_SECP521R1, 25, 521, "secp521r1" },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200356#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200357#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED)
358 { MBEDTLS_ECP_DP_BP512R1, 28, 512, "brainpoolP512r1" },
Gergely Budaie40c4692014-01-22 11:22:20 +0100359#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200360#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
361 { MBEDTLS_ECP_DP_SECP384R1, 24, 384, "secp384r1" },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200362#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200363#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED)
364 { MBEDTLS_ECP_DP_BP384R1, 27, 384, "brainpoolP384r1" },
Gergely Budaie40c4692014-01-22 11:22:20 +0100365#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200366#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
367 { MBEDTLS_ECP_DP_SECP256R1, 23, 256, "secp256r1" },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200368#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200369#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED)
370 { MBEDTLS_ECP_DP_SECP256K1, 22, 256, "secp256k1" },
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100371#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200372#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED)
373 { MBEDTLS_ECP_DP_BP256R1, 26, 256, "brainpoolP256r1" },
Gergely Budaie40c4692014-01-22 11:22:20 +0100374#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200375#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED)
376 { MBEDTLS_ECP_DP_SECP224R1, 21, 224, "secp224r1" },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200377#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200378#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED)
379 { MBEDTLS_ECP_DP_SECP224K1, 20, 224, "secp224k1" },
Manuel Pégourié-Gonnard9bcff392014-01-10 18:26:48 +0100380#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200381#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
382 { MBEDTLS_ECP_DP_SECP192R1, 19, 192, "secp192r1" },
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100383#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200384#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED)
385 { MBEDTLS_ECP_DP_SECP192K1, 18, 192, "secp192k1" },
Manuel Pégourié-Gonnard9bcff392014-01-10 18:26:48 +0100386#endif
Gilles Peskine360e2c42020-07-24 02:03:20 +0200387#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
Christoph M. Wintersteiger86e36c42018-12-06 17:27:31 +0000388 { MBEDTLS_ECP_DP_CURVE25519, 29, 256, "x25519" },
Christoph M. Wintersteigerc9f737b2018-10-25 13:03:05 +0100389#endif
Gilles Peskine360e2c42020-07-24 02:03:20 +0200390#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
391 { MBEDTLS_ECP_DP_CURVE448, 30, 448, "x448" },
392#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200393 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200394};
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100395
Manuel Pégourié-Gonnardba782bb2014-07-08 13:31:34 +0200396#define ECP_NB_CURVES sizeof( ecp_supported_curves ) / \
397 sizeof( ecp_supported_curves[0] )
398
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200399static mbedtls_ecp_group_id ecp_supported_grp_id[ECP_NB_CURVES];
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200400
401/*
Manuel Pégourié-Gonnardda179e42013-09-18 15:31:24 +0200402 * List of supported curves and associated info
403 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200404const mbedtls_ecp_curve_info *mbedtls_ecp_curve_list( void )
Manuel Pégourié-Gonnardda179e42013-09-18 15:31:24 +0200405{
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200406 return( ecp_supported_curves );
Manuel Pégourié-Gonnardda179e42013-09-18 15:31:24 +0200407}
408
409/*
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100410 * List of supported curves, group ID only
411 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200412const mbedtls_ecp_group_id *mbedtls_ecp_grp_id_list( void )
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100413{
414 static int init_done = 0;
415
416 if( ! init_done )
417 {
418 size_t i = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200419 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100420
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200421 for( curve_info = mbedtls_ecp_curve_list();
422 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100423 curve_info++ )
424 {
425 ecp_supported_grp_id[i++] = curve_info->grp_id;
426 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200427 ecp_supported_grp_id[i] = MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100428
429 init_done = 1;
430 }
431
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200432 return( ecp_supported_grp_id );
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100433}
434
435/*
436 * Get the curve info for the internal identifier
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200437 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200438const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_grp_id( mbedtls_ecp_group_id grp_id )
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200439{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200440 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200441
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200442 for( curve_info = mbedtls_ecp_curve_list();
443 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200444 curve_info++ )
445 {
446 if( curve_info->grp_id == grp_id )
447 return( curve_info );
448 }
449
450 return( NULL );
451}
452
453/*
454 * Get the curve info from the TLS identifier
455 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200456const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_tls_id( uint16_t tls_id )
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200457{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200458 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200459
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200460 for( curve_info = mbedtls_ecp_curve_list();
461 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200462 curve_info++ )
463 {
464 if( curve_info->tls_id == tls_id )
465 return( curve_info );
466 }
467
468 return( NULL );
469}
470
471/*
Manuel Pégourié-Gonnard0267e3d2013-11-30 15:10:14 +0100472 * Get the curve info from the name
473 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200474const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_name( const char *name )
Manuel Pégourié-Gonnard0267e3d2013-11-30 15:10:14 +0100475{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200476 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnard0267e3d2013-11-30 15:10:14 +0100477
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500478 if( name == NULL )
479 return( NULL );
480
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200481 for( curve_info = mbedtls_ecp_curve_list();
482 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard0267e3d2013-11-30 15:10:14 +0100483 curve_info++ )
484 {
Manuel Pégourié-Gonnardcb46fd82015-05-28 17:06:07 +0200485 if( strcmp( curve_info->name, name ) == 0 )
Manuel Pégourié-Gonnard0267e3d2013-11-30 15:10:14 +0100486 return( curve_info );
487 }
488
489 return( NULL );
490}
491
492/*
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100493 * Get the type of a curve
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +0100494 */
Janos Follathdf9295b2019-02-26 12:36:52 +0000495mbedtls_ecp_curve_type mbedtls_ecp_get_type( const mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +0100496{
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100497 if( grp->G.X.p == NULL )
Janos Follathdf9295b2019-02-26 12:36:52 +0000498 return( MBEDTLS_ECP_TYPE_NONE );
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100499
500 if( grp->G.Y.p == NULL )
Janos Follathdf9295b2019-02-26 12:36:52 +0000501 return( MBEDTLS_ECP_TYPE_MONTGOMERY );
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100502 else
Janos Follathdf9295b2019-02-26 12:36:52 +0000503 return( MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS );
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +0100504}
505
506/*
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +0100507 * Initialize (the components of) a point
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100508 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200509void mbedtls_ecp_point_init( mbedtls_ecp_point *pt )
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100510{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200511 mbedtls_mpi_init( &pt->X );
512 mbedtls_mpi_init( &pt->Y );
513 mbedtls_mpi_init( &pt->Z );
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +0100514}
515
516/*
517 * Initialize (the components of) a group
518 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200519void mbedtls_ecp_group_init( mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +0100520{
Manuel Pégourié-Gonnard95e2eca2018-06-20 10:29:47 +0200521 grp->id = MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard5bd38b12017-08-23 16:55:59 +0200522 mbedtls_mpi_init( &grp->P );
523 mbedtls_mpi_init( &grp->A );
524 mbedtls_mpi_init( &grp->B );
525 mbedtls_ecp_point_init( &grp->G );
526 mbedtls_mpi_init( &grp->N );
527 grp->pbits = 0;
528 grp->nbits = 0;
529 grp->h = 0;
530 grp->modp = NULL;
531 grp->t_pre = NULL;
532 grp->t_post = NULL;
533 grp->t_data = NULL;
534 grp->T = NULL;
535 grp->T_size = 0;
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100536}
537
538/*
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200539 * Initialize (the components of) a key pair
540 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200541void mbedtls_ecp_keypair_init( mbedtls_ecp_keypair *key )
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200542{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200543 mbedtls_ecp_group_init( &key->grp );
544 mbedtls_mpi_init( &key->d );
545 mbedtls_ecp_point_init( &key->Q );
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200546}
547
548/*
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100549 * Unallocate (the components of) a point
550 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200551void mbedtls_ecp_point_free( mbedtls_ecp_point *pt )
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100552{
553 if( pt == NULL )
554 return;
555
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200556 mbedtls_mpi_free( &( pt->X ) );
557 mbedtls_mpi_free( &( pt->Y ) );
558 mbedtls_mpi_free( &( pt->Z ) );
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100559}
560
561/*
kXuanba9cb762021-04-08 14:32:06 +0800562 * Check that the comb table (grp->T) is static initialized.
563 */
564static int ecp_group_is_static_comb_table( const mbedtls_ecp_group *grp ) {
565#if MBEDTLS_ECP_FIXED_POINT_OPTIM == 1
566 return grp->T != NULL && grp->T_size == 0;
567#else
568 (void) grp;
569 return 0;
570#endif
571}
572
573/*
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100574 * Unallocate (the components of) a group
575 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200576void mbedtls_ecp_group_free( mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100577{
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +0200578 size_t i;
579
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100580 if( grp == NULL )
581 return;
582
Manuel Pégourié-Gonnard1f82b042013-12-06 12:51:50 +0100583 if( grp->h != 1 )
584 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200585 mbedtls_mpi_free( &grp->P );
586 mbedtls_mpi_free( &grp->A );
587 mbedtls_mpi_free( &grp->B );
588 mbedtls_ecp_point_free( &grp->G );
589 mbedtls_mpi_free( &grp->N );
Manuel Pégourié-Gonnard1f82b042013-12-06 12:51:50 +0100590 }
Manuel Pégourié-Gonnardc9727702013-09-16 18:56:28 +0200591
kXuanba9cb762021-04-08 14:32:06 +0800592 if( !ecp_group_is_static_comb_table(grp) && grp->T != NULL )
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +0200593 {
594 for( i = 0; i < grp->T_size; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200595 mbedtls_ecp_point_free( &grp->T[i] );
596 mbedtls_free( grp->T );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +0200597 }
598
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -0500599 mbedtls_platform_zeroize( grp, sizeof( mbedtls_ecp_group ) );
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100600}
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +0100601
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +0100602/*
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200603 * Unallocate (the components of) a key pair
604 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200605void mbedtls_ecp_keypair_free( mbedtls_ecp_keypair *key )
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200606{
Paul Bakker66d5d072014-06-17 16:39:18 +0200607 if( key == NULL )
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200608 return;
609
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200610 mbedtls_ecp_group_free( &key->grp );
611 mbedtls_mpi_free( &key->d );
612 mbedtls_ecp_point_free( &key->Q );
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200613}
614
615/*
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200616 * Copy the contents of a point
617 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200618int mbedtls_ecp_copy( mbedtls_ecp_point *P, const mbedtls_ecp_point *Q )
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200619{
Janos Follath24eed8d2019-11-22 13:21:35 +0000620 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200621 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->X, &Q->X ) );
622 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->Y, &Q->Y ) );
623 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->Z, &Q->Z ) );
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200624
625cleanup:
626 return( ret );
627}
628
629/*
630 * Copy the contents of a group object
631 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200632int mbedtls_ecp_group_copy( mbedtls_ecp_group *dst, const mbedtls_ecp_group *src )
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200633{
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500634 return( mbedtls_ecp_group_load( dst, src->id ) );
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200635}
636
637/*
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100638 * Set point to zero
639 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200640int mbedtls_ecp_set_zero( mbedtls_ecp_point *pt )
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100641{
Janos Follath24eed8d2019-11-22 13:21:35 +0000642 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200643 MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->X , 1 ) );
644 MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Y , 1 ) );
645 MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Z , 0 ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100646
647cleanup:
648 return( ret );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100649}
650
651/*
Manuel Pégourié-Gonnard6545ca72013-01-26 16:05:22 +0100652 * Tell if a point is zero
653 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200654int mbedtls_ecp_is_zero( mbedtls_ecp_point *pt )
Manuel Pégourié-Gonnard6545ca72013-01-26 16:05:22 +0100655{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200656 return( mbedtls_mpi_cmp_int( &pt->Z, 0 ) == 0 );
Manuel Pégourié-Gonnard6545ca72013-01-26 16:05:22 +0100657}
658
659/*
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500660 * Compare two points lazily
Manuel Pégourié-Gonnard6029a852015-08-11 15:44:41 +0200661 */
662int mbedtls_ecp_point_cmp( const mbedtls_ecp_point *P,
663 const mbedtls_ecp_point *Q )
664{
665 if( mbedtls_mpi_cmp_mpi( &P->X, &Q->X ) == 0 &&
666 mbedtls_mpi_cmp_mpi( &P->Y, &Q->Y ) == 0 &&
667 mbedtls_mpi_cmp_mpi( &P->Z, &Q->Z ) == 0 )
668 {
669 return( 0 );
670 }
671
672 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
673}
674
675/*
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100676 * Import a non-zero point from ASCII strings
677 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200678int mbedtls_ecp_point_read_string( mbedtls_ecp_point *P, int radix,
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100679 const char *x, const char *y )
680{
Janos Follath24eed8d2019-11-22 13:21:35 +0000681 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200682 MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &P->X, radix, x ) );
683 MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &P->Y, radix, y ) );
684 MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &P->Z, 1 ) );
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100685
686cleanup:
687 return( ret );
688}
689
690/*
Janos Follath7caf8e42019-02-20 12:00:22 +0000691 * Export a point into unsigned binary data (SEC1 2.3.3 and RFC7748)
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100692 */
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500693int mbedtls_ecp_point_write_binary( const mbedtls_ecp_group *grp,
694 const mbedtls_ecp_point *P,
695 int format, size_t *olen,
696 unsigned char *buf, size_t buflen )
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100697{
Janos Follath28eb06d2019-02-26 10:53:34 +0000698 int ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100699 size_t plen;
Tuvshinzaya Erdenekhuu86669de2022-07-28 10:31:16 +0100700 if( format != MBEDTLS_ECP_PF_UNCOMPRESSED &&
701 format != MBEDTLS_ECP_PF_COMPRESSED )
Tuvshinzaya Erdenekhuu22f36542022-07-27 15:21:48 +0100702 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100703
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200704 plen = mbedtls_mpi_size( &grp->P );
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100705
Gilles Peskinee8c04fe2018-09-14 17:44:21 +0200706#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Gilles Peskine59970052019-02-28 13:12:06 +0100707 (void) format; /* Montgomery curves always use the same point format */
Janos Follathdf9295b2019-02-26 12:36:52 +0000708 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100709 {
Janos Follath7caf8e42019-02-20 12:00:22 +0000710 *olen = plen;
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100711 if( buflen < *olen )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200712 return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100713
Janos Follath7caf8e42019-02-20 12:00:22 +0000714 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary_le( &P->X, buf, plen ) );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100715 }
Janos Follath7caf8e42019-02-20 12:00:22 +0000716#endif
Gilles Peskinee8c04fe2018-09-14 17:44:21 +0200717#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +0000718 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100719 {
Janos Follath7caf8e42019-02-20 12:00:22 +0000720 /*
721 * Common case: P == 0
722 */
723 if( mbedtls_mpi_cmp_int( &P->Z, 0 ) == 0 )
724 {
725 if( buflen < 1 )
726 return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100727
Janos Follath7caf8e42019-02-20 12:00:22 +0000728 buf[0] = 0x00;
729 *olen = 1;
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100730
Janos Follath7caf8e42019-02-20 12:00:22 +0000731 return( 0 );
732 }
733
734 if( format == MBEDTLS_ECP_PF_UNCOMPRESSED )
735 {
736 *olen = 2 * plen + 1;
737
738 if( buflen < *olen )
739 return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
740
741 buf[0] = 0x04;
742 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->X, buf + 1, plen ) );
743 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->Y, buf + 1 + plen, plen ) );
744 }
745 else if( format == MBEDTLS_ECP_PF_COMPRESSED )
746 {
747 *olen = plen + 1;
748
749 if( buflen < *olen )
750 return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
751
752 buf[0] = 0x02 + mbedtls_mpi_get_bit( &P->Y, 0 );
753 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->X, buf + 1, plen ) );
754 }
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100755 }
Janos Follath7caf8e42019-02-20 12:00:22 +0000756#endif
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100757
758cleanup:
759 return( ret );
760}
761
762/*
Janos Follath59b813c2019-02-13 10:44:06 +0000763 * Import a point from unsigned binary data (SEC1 2.3.4 and RFC7748)
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100764 */
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500765int mbedtls_ecp_point_read_binary( const mbedtls_ecp_group *grp,
766 mbedtls_ecp_point *pt,
767 const unsigned char *buf, size_t ilen )
Manuel Pégourié-Gonnard5246ee52014-03-19 16:18:38 +0100768{
Janos Follath28eb06d2019-02-26 10:53:34 +0000769 int ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100770 size_t plen;
Paul Bakker82788fb2014-10-20 13:59:19 +0200771 if( ilen < 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200772 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard67dbe1e2014-07-08 13:09:24 +0200773
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200774 plen = mbedtls_mpi_size( &grp->P );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100775
Gilles Peskinee8c04fe2018-09-14 17:44:21 +0200776#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +0000777 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
Janos Follath59b813c2019-02-13 10:44:06 +0000778 {
779 if( plen != ilen )
780 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5246ee52014-03-19 16:18:38 +0100781
Janos Follath59b813c2019-02-13 10:44:06 +0000782 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary_le( &pt->X, buf, plen ) );
783 mbedtls_mpi_free( &pt->Y );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100784
Janos Follath59b813c2019-02-13 10:44:06 +0000785 if( grp->id == MBEDTLS_ECP_DP_CURVE25519 )
Janos Follathffbd7e82019-02-25 11:35:20 +0000786 /* Set most significant bit to 0 as prescribed in RFC7748 §5 */
Janos Follath59b813c2019-02-13 10:44:06 +0000787 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &pt->X, plen * 8 - 1, 0 ) );
Janos Follath28eb06d2019-02-26 10:53:34 +0000788
789 MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Z, 1 ) );
Janos Follath59b813c2019-02-13 10:44:06 +0000790 }
791#endif
Gilles Peskinee8c04fe2018-09-14 17:44:21 +0200792#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +0000793 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
Janos Follath59b813c2019-02-13 10:44:06 +0000794 {
795 if( buf[0] == 0x00 )
796 {
797 if( ilen == 1 )
798 return( mbedtls_ecp_set_zero( pt ) );
799 else
800 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
801 }
802
803 if( buf[0] != 0x04 )
804 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
805
806 if( ilen != 2 * plen + 1 )
807 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
808
809 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &pt->X, buf + 1, plen ) );
810 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &pt->Y,
811 buf + 1 + plen, plen ) );
Janos Follath28eb06d2019-02-26 10:53:34 +0000812 MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Z, 1 ) );
Janos Follath59b813c2019-02-13 10:44:06 +0000813 }
814#endif
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100815
816cleanup:
817 return( ret );
818}
819
820/*
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100821 * Import a point from a TLS ECPoint record (RFC 4492)
822 * struct {
823 * opaque point <1..2^8-1>;
824 * } ECPoint;
825 */
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500826int mbedtls_ecp_tls_read_point( const mbedtls_ecp_group *grp,
827 mbedtls_ecp_point *pt,
828 const unsigned char **buf, size_t buf_len )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100829{
830 unsigned char data_len;
Manuel Pégourié-Gonnard98f51812013-02-10 13:38:29 +0100831 const unsigned char *buf_start;
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100832 /*
Manuel Pégourié-Gonnard67dbe1e2014-07-08 13:09:24 +0200833 * We must have at least two bytes (1 for length, at least one for data)
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100834 */
835 if( buf_len < 2 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200836 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100837
Manuel Pégourié-Gonnard98f51812013-02-10 13:38:29 +0100838 data_len = *(*buf)++;
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100839 if( data_len < 1 || data_len > buf_len - 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200840 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100841
Manuel Pégourié-Gonnard98f51812013-02-10 13:38:29 +0100842 /*
843 * Save buffer start for read_binary and update buf
844 */
845 buf_start = *buf;
846 *buf += data_len;
847
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500848 return( mbedtls_ecp_point_read_binary( grp, pt, buf_start, data_len ) );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100849}
850
851/*
852 * Export a point as a TLS ECPoint record (RFC 4492)
853 * struct {
854 * opaque point <1..2^8-1>;
855 * } ECPoint;
856 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200857int mbedtls_ecp_tls_write_point( const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt,
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100858 int format, size_t *olen,
859 unsigned char *buf, size_t blen )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100860{
Janos Follath24eed8d2019-11-22 13:21:35 +0000861 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Tuvshinzaya Erdenekhuu86669de2022-07-28 10:31:16 +0100862 if( format != MBEDTLS_ECP_PF_UNCOMPRESSED &&
863 format != MBEDTLS_ECP_PF_COMPRESSED )
Tuvshinzaya Erdenekhuu22f36542022-07-27 15:21:48 +0100864 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100865
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100866 /*
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100867 * buffer length must be at least one, for our length byte
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100868 */
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100869 if( blen < 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200870 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100871
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200872 if( ( ret = mbedtls_ecp_point_write_binary( grp, pt, format,
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100873 olen, buf + 1, blen - 1) ) != 0 )
874 return( ret );
875
876 /*
877 * write length to the first byte and update total length
878 */
Paul Bakkerb9cfaa02013-10-11 18:58:55 +0200879 buf[0] = (unsigned char) *olen;
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100880 ++*olen;
881
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200882 return( 0 );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100883}
884
885/*
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100886 * Set a group from an ECParameters record (RFC 4492)
887 */
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500888int mbedtls_ecp_tls_read_group( mbedtls_ecp_group *grp,
889 const unsigned char **buf, size_t len )
890{
Janos Follath24eed8d2019-11-22 13:21:35 +0000891 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500892 mbedtls_ecp_group_id grp_id;
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500893 if( ( ret = mbedtls_ecp_tls_read_group_id( &grp_id, buf, len ) ) != 0 )
894 return( ret );
895
896 return( mbedtls_ecp_group_load( grp, grp_id ) );
897}
898
899/*
900 * Read a group id from an ECParameters record (RFC 4492) and convert it to
901 * mbedtls_ecp_group_id.
902 */
903int mbedtls_ecp_tls_read_group_id( mbedtls_ecp_group_id *grp,
904 const unsigned char **buf, size_t len )
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100905{
Manuel Pégourié-Gonnardf24b4a72013-09-23 18:14:50 +0200906 uint16_t tls_id;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200907 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100908 /*
909 * We expect at least three bytes (see below)
910 */
911 if( len < 3 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200912 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100913
914 /*
915 * First byte is curve_type; only named_curve is handled
916 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200917 if( *(*buf)++ != MBEDTLS_ECP_TLS_NAMED_CURVE )
918 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100919
920 /*
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100921 * Next two bytes are the namedcurve value
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100922 */
Manuel Pégourié-Gonnardf24b4a72013-09-23 18:14:50 +0200923 tls_id = *(*buf)++;
924 tls_id <<= 8;
925 tls_id |= *(*buf)++;
926
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200927 if( ( curve_info = mbedtls_ecp_curve_info_from_tls_id( tls_id ) ) == NULL )
928 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
Manuel Pégourié-Gonnardf24b4a72013-09-23 18:14:50 +0200929
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500930 *grp = curve_info->grp_id;
931
932 return( 0 );
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100933}
934
935/*
936 * Write the ECParameters record corresponding to a group (RFC 4492)
937 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200938int mbedtls_ecp_tls_write_group( const mbedtls_ecp_group *grp, size_t *olen,
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100939 unsigned char *buf, size_t blen )
940{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200941 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200942 if( ( curve_info = mbedtls_ecp_curve_info_from_grp_id( grp->id ) ) == NULL )
943 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200944
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100945 /*
946 * We are going to write 3 bytes (see below)
947 */
948 *olen = 3;
949 if( blen < *olen )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200950 return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100951
952 /*
953 * First byte is curve_type, always named_curve
954 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200955 *buf++ = MBEDTLS_ECP_TLS_NAMED_CURVE;
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100956
957 /*
958 * Next two bytes are the namedcurve value
959 */
Joe Subbianid0687852021-07-21 15:22:47 +0100960 MBEDTLS_PUT_UINT16_BE( curve_info->tls_id, buf, 0 );
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100961
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200962 return( 0 );
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100963}
Manuel Pégourié-Gonnardab38b702012-11-05 17:34:55 +0100964
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200965/*
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200966 * Wrapper around fast quasi-modp functions, with fall-back to mbedtls_mpi_mod_mpi.
967 * See the documentation of struct mbedtls_ecp_group.
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200968 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200969 * This function is in the critial loop for mbedtls_ecp_mul, so pay attention to perf.
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200970 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200971static int ecp_modp( mbedtls_mpi *N, const mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200972{
Janos Follath24eed8d2019-11-22 13:21:35 +0000973 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200974
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200975 if( grp->modp == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200976 return( mbedtls_mpi_mod_mpi( N, N, &grp->P ) );
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200977
978 /* N->s < 0 is a much faster test, which fails only if N is 0 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200979 if( ( N->s < 0 && mbedtls_mpi_cmp_int( N, 0 ) != 0 ) ||
Manuel Pégourié-Gonnardc0696c22015-06-18 16:47:17 +0200980 mbedtls_mpi_bitlen( N ) > 2 * grp->pbits )
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200981 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200982 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200983 }
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200984
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200985 MBEDTLS_MPI_CHK( grp->modp( N ) );
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200986
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200987 /* N->s < 0 is a much faster test, which fails only if N is 0 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200988 while( N->s < 0 && mbedtls_mpi_cmp_int( N, 0 ) != 0 )
989 MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( N, N, &grp->P ) );
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200990
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200991 while( mbedtls_mpi_cmp_mpi( N, &grp->P ) >= 0 )
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200992 /* we known P, N and the result are positive */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200993 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_abs( N, N, &grp->P ) );
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200994
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200995cleanup:
996 return( ret );
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200997}
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200998
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100999/*
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001000 * Fast mod-p functions expect their argument to be in the 0..p^2 range.
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +01001001 *
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001002 * In order to guarantee that, we need to ensure that operands of
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001003 * mbedtls_mpi_mul_mpi are in the 0..p range. So, after each operation we will
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +01001004 * bring the result back to this range.
1005 *
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001006 * The following macros are shortcuts for doing that.
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +01001007 */
1008
1009/*
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001010 * Reduce a mbedtls_mpi mod p in-place, general case, to use after mbedtls_mpi_mul_mpi
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001011 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001012#if defined(MBEDTLS_SELF_TEST)
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01001013#define INC_MUL_COUNT mul_count++;
1014#else
1015#define INC_MUL_COUNT
1016#endif
1017
Hanno Becker1eeca412018-10-15 12:01:35 +01001018#define MOD_MUL( N ) \
1019 do \
1020 { \
1021 MBEDTLS_MPI_CHK( ecp_modp( &(N), grp ) ); \
1022 INC_MUL_COUNT \
1023 } while( 0 )
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001024
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001025static inline int mbedtls_mpi_mul_mod( const mbedtls_ecp_group *grp,
1026 mbedtls_mpi *X,
1027 const mbedtls_mpi *A,
1028 const mbedtls_mpi *B )
1029{
Janos Follath24eed8d2019-11-22 13:21:35 +00001030 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001031 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( X, A, B ) );
1032 MOD_MUL( *X );
1033cleanup:
1034 return( ret );
1035}
1036
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001037/*
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001038 * Reduce a mbedtls_mpi mod p in-place, to use after mbedtls_mpi_sub_mpi
Manuel Pégourié-Gonnardc9e387c2013-10-17 17:15:35 +02001039 * N->s < 0 is a very fast test, which fails only if N is 0
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001040 */
Hanno Beckerce29ae82022-01-04 04:55:11 +00001041#define MOD_SUB( N ) \
1042 do { \
1043 while( (N)->s < 0 && mbedtls_mpi_cmp_int( (N), 0 ) != 0 ) \
1044 MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( (N), (N), &grp->P ) ); \
1045 } while( 0 )
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001046
Steven Cooremane5388962021-03-01 14:04:53 +01001047#if ( defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED) && \
1048 !( defined(MBEDTLS_ECP_NO_FALLBACK) && \
1049 defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) && \
1050 defined(MBEDTLS_ECP_ADD_MIXED_ALT) ) ) || \
1051 ( defined(MBEDTLS_ECP_MONTGOMERY_ENABLED) && \
1052 !( defined(MBEDTLS_ECP_NO_FALLBACK) && \
1053 defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) ) )
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001054static inline int mbedtls_mpi_sub_mod( const mbedtls_ecp_group *grp,
1055 mbedtls_mpi *X,
1056 const mbedtls_mpi *A,
1057 const mbedtls_mpi *B )
1058{
Janos Follath24eed8d2019-11-22 13:21:35 +00001059 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001060 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( X, A, B ) );
Hanno Beckerce29ae82022-01-04 04:55:11 +00001061 MOD_SUB( X );
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001062cleanup:
1063 return( ret );
1064}
Steven Cooremane5388962021-03-01 14:04:53 +01001065#endif /* All functions referencing mbedtls_mpi_sub_mod() are alt-implemented without fallback */
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001066
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001067/*
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001068 * Reduce a mbedtls_mpi mod p in-place, to use after mbedtls_mpi_add_mpi and mbedtls_mpi_mul_int.
Manuel Pégourié-Gonnardc9e387c2013-10-17 17:15:35 +02001069 * We known P, N and the result are positive, so sub_abs is correct, and
1070 * a bit faster.
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001071 */
Hanno Beckerce29ae82022-01-04 04:55:11 +00001072#define MOD_ADD( N ) \
1073 while( mbedtls_mpi_cmp_mpi( (N), &grp->P ) >= 0 ) \
1074 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_abs( (N), (N), &grp->P ) )
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001075
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001076static inline int mbedtls_mpi_add_mod( const mbedtls_ecp_group *grp,
1077 mbedtls_mpi *X,
1078 const mbedtls_mpi *A,
1079 const mbedtls_mpi *B )
1080{
Janos Follath24eed8d2019-11-22 13:21:35 +00001081 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001082 MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( X, A, B ) );
Hanno Beckerce29ae82022-01-04 04:55:11 +00001083 MOD_ADD( X );
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001084cleanup:
1085 return( ret );
1086}
1087
Hanno Becker02b35bd2022-01-01 06:54:25 +00001088static inline int mbedtls_mpi_mul_int_mod( const mbedtls_ecp_group *grp,
1089 mbedtls_mpi *X,
1090 const mbedtls_mpi *A,
1091 mbedtls_mpi_uint c )
1092{
1093 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
1094
1095 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_int( X, A, c ) );
Hanno Beckerce29ae82022-01-04 04:55:11 +00001096 MOD_ADD( X );
Hanno Becker02b35bd2022-01-01 06:54:25 +00001097cleanup:
1098 return( ret );
1099}
1100
Hanno Beckerce29ae82022-01-04 04:55:11 +00001101static inline int mbedtls_mpi_sub_int_mod( const mbedtls_ecp_group *grp,
1102 mbedtls_mpi *X,
1103 const mbedtls_mpi *A,
1104 mbedtls_mpi_uint c )
1105{
1106 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
1107
1108 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( X, A, c ) );
1109 MOD_SUB( X );
1110cleanup:
1111 return( ret );
1112}
1113
1114#define MPI_ECP_SUB_INT( X, A, c ) \
1115 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int_mod( grp, X, A, c ) )
1116
Steven Cooremane5388962021-03-01 14:04:53 +01001117#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED) && \
1118 !( defined(MBEDTLS_ECP_NO_FALLBACK) && \
1119 defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) && \
1120 defined(MBEDTLS_ECP_ADD_MIXED_ALT) )
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001121static inline int mbedtls_mpi_shift_l_mod( const mbedtls_ecp_group *grp,
1122 mbedtls_mpi *X,
1123 size_t count )
1124{
Janos Follath24eed8d2019-11-22 13:21:35 +00001125 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001126 MBEDTLS_MPI_CHK( mbedtls_mpi_shift_l( X, count ) );
Hanno Beckerce29ae82022-01-04 04:55:11 +00001127 MOD_ADD( X );
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001128cleanup:
1129 return( ret );
1130}
Steven Cooremane5388962021-03-01 14:04:53 +01001131#endif /* All functions referencing mbedtls_mpi_shift_l_mod() are alt-implemented without fallback */
Gilles Peskine3b3b34f2019-07-18 21:08:27 +02001132
Hanno Becker595616e2022-01-05 08:28:24 +00001133/*
1134 * Macro wrappers around ECP modular arithmetic
1135 *
1136 * Currently, these wrappers are defined via the bignum module.
1137 */
1138
1139#define MPI_ECP_ADD( X, A, B ) \
Hanno Beckerce29ae82022-01-04 04:55:11 +00001140 MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, X, A, B ) )
1141
Hanno Becker595616e2022-01-05 08:28:24 +00001142#define MPI_ECP_SUB( X, A, B ) \
Hanno Beckerce29ae82022-01-04 04:55:11 +00001143 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, X, A, B ) )
1144
Hanno Becker595616e2022-01-05 08:28:24 +00001145#define MPI_ECP_MUL( X, A, B ) \
Hanno Beckerce29ae82022-01-04 04:55:11 +00001146 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, X, A, B ) )
1147
Hanno Becker595616e2022-01-05 08:28:24 +00001148#define MPI_ECP_SQR( X, A ) \
Hanno Becker885ed402022-01-04 06:43:50 +00001149 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, X, A, A ) )
1150
Hanno Becker595616e2022-01-05 08:28:24 +00001151#define MPI_ECP_MUL_INT( X, A, c ) \
Hanno Beckerce29ae82022-01-04 04:55:11 +00001152 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_int_mod( grp, X, A, c ) )
1153
Hanno Becker595616e2022-01-05 08:28:24 +00001154#define MPI_ECP_INV( dst, src ) \
Hanno Beckerce29ae82022-01-04 04:55:11 +00001155 MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( (dst), (src), &grp->P ) )
1156
Hanno Becker595616e2022-01-05 08:28:24 +00001157#define MPI_ECP_MOV( X, A ) \
Hanno Beckerce29ae82022-01-04 04:55:11 +00001158 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( X, A ) )
1159
Hanno Becker595616e2022-01-05 08:28:24 +00001160#define MPI_ECP_SHIFT_L( X, count ) \
Hanno Beckerce29ae82022-01-04 04:55:11 +00001161 MBEDTLS_MPI_CHK( mbedtls_mpi_shift_l_mod( grp, X, count ) )
1162
Hanno Becker595616e2022-01-05 08:28:24 +00001163#define MPI_ECP_LSET( X, c ) \
1164 MBEDTLS_MPI_CHK( mbedtls_mpi_lset( X, c ) )
1165
1166#define MPI_ECP_CMP_INT( X, c ) \
1167 mbedtls_mpi_cmp_int( X, c )
1168
1169#define MPI_ECP_CMP( X, Y ) \
1170 mbedtls_mpi_cmp_mpi( X, Y )
1171
1172/* Needs f_rng, p_rng to be defined. */
1173#define MPI_ECP_RAND( X ) \
1174 MBEDTLS_MPI_CHK( mbedtls_mpi_random( (X), 2, &grp->P, f_rng, p_rng ) )
1175
1176/* Conditional negation
1177 * Needs grp and a temporary MPI tmp to be defined. */
1178#define MPI_ECP_COND_NEG( X, cond ) \
1179 do \
1180 { \
1181 unsigned char nonzero = mbedtls_mpi_cmp_int( (X), 0 ) != 0; \
1182 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &tmp, &grp->P, (X) ) ); \
1183 MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_assign( (X), &tmp, \
1184 nonzero & cond ) ); \
1185 } while( 0 )
1186
Hanno Beckerc27a0e02022-01-06 05:56:34 +00001187#define MPI_ECP_NEG( X ) MPI_ECP_COND_NEG( (X), 1 )
1188
1189#define MPI_ECP_VALID( X ) \
1190 ( (X)->p != NULL )
1191
1192#define MPI_ECP_COND_ASSIGN( X, Y, cond ) \
1193 MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_assign( (X), (Y), (cond) ) )
1194
1195#define MPI_ECP_COND_SWAP( X, Y, cond ) \
1196 MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( (X), (Y), (cond) ) )
1197
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02001198#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001199/*
1200 * For curves in short Weierstrass form, we do all the internal operations in
1201 * Jacobian coordinates.
1202 *
Shaun Case8b0ecbc2021-12-20 21:14:10 -08001203 * For multiplication, we'll use a comb method with countermeasures against
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001204 * SPA, hence timing attacks.
1205 */
1206
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001207/*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +01001208 * Normalize jacobian coordinates so that Z == 0 || Z == 1 (GECC 3.2.1)
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001209 * Cost: 1N := 1I + 3M + 1S
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001210 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001211static int ecp_normalize_jac( const mbedtls_ecp_group *grp, mbedtls_ecp_point *pt )
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001212{
Hanno Becker595616e2022-01-05 08:28:24 +00001213 if( MPI_ECP_CMP_INT( &pt->Z, 0 ) == 0 )
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001214 return( 0 );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001215
Janos Follathb0697532016-08-18 12:38:46 +01001216#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02001217 if( mbedtls_internal_ecp_grp_capable( grp ) )
1218 return( mbedtls_internal_ecp_normalize_jac( grp, pt ) );
Janos Follath372697b2016-10-28 16:53:11 +01001219#endif /* MBEDTLS_ECP_NORMALIZE_JAC_ALT */
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02001220
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001221#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT)
1222 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
1223#else
1224 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Hanno Becker76f897d2022-01-02 12:47:34 +00001225 mbedtls_mpi T;
1226 mbedtls_mpi_init( &T );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001227
Hanno Beckerce29ae82022-01-04 04:55:11 +00001228 MPI_ECP_INV( &T, &pt->Z ); /* T <- 1 / Z */
1229 MPI_ECP_MUL( &pt->Y, &pt->Y, &T ); /* Y' <- Y*T = Y / Z */
Hanno Becker885ed402022-01-04 06:43:50 +00001230 MPI_ECP_SQR( &T, &T ); /* T <- T^2 = 1 / Z^2 */
Hanno Beckerce29ae82022-01-04 04:55:11 +00001231 MPI_ECP_MUL( &pt->X, &pt->X, &T ); /* X <- X * T = X / Z^2 */
1232 MPI_ECP_MUL( &pt->Y, &pt->Y, &T ); /* Y'' <- Y' * T = Y / Z^3 */
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001233
Hanno Becker595616e2022-01-05 08:28:24 +00001234 MPI_ECP_LSET( &pt->Z, 1 );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001235
1236cleanup:
1237
Hanno Becker76f897d2022-01-02 12:47:34 +00001238 mbedtls_mpi_free( &T );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001239
1240 return( ret );
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001241#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT) */
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +01001242}
1243
1244/*
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001245 * Normalize jacobian coordinates of an array of (pointers to) points,
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001246 * using Montgomery's trick to perform only one inversion mod P.
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001247 * (See for example Cohen's "A Course in Computational Algebraic Number
1248 * Theory", Algorithm 10.3.4.)
1249 *
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001250 * Warning: fails (returning an error) if one of the points is zero!
Manuel Pégourié-Gonnard7a949d32013-12-05 10:26:01 +01001251 * This should never happen, see choice of w in ecp_mul_comb().
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001252 *
1253 * Cost: 1N(t) := 1I + (6t - 3)M + 1S
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001254 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001255static int ecp_normalize_jac_many( const mbedtls_ecp_group *grp,
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001256 mbedtls_ecp_point *T[], size_t T_size )
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001257{
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001258 if( T_size < 2 )
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +01001259 return( ecp_normalize_jac( grp, *T ) );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001260
Janos Follathb0697532016-08-18 12:38:46 +01001261#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02001262 if( mbedtls_internal_ecp_grp_capable( grp ) )
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001263 return( mbedtls_internal_ecp_normalize_jac_many( grp, T, T_size ) );
Janos Follathb0697532016-08-18 12:38:46 +01001264#endif
1265
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001266#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT)
1267 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
1268#else
1269 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
1270 size_t i;
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001271 mbedtls_mpi *c, t;
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001272
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001273 if( ( c = mbedtls_calloc( T_size, sizeof( mbedtls_mpi ) ) ) == NULL )
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02001274 return( MBEDTLS_ERR_ECP_ALLOC_FAILED );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001275
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001276 mbedtls_mpi_init( &t );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001277
Hanno Beckerbae30232022-01-10 12:25:05 +00001278 mpi_init_many( c, T_size );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001279 /*
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001280 * c[i] = Z_0 * ... * Z_i, i = 0,..,n := T_size-1
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001281 */
Hanno Beckerce29ae82022-01-04 04:55:11 +00001282 MPI_ECP_MOV( &c[0], &T[0]->Z );
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001283 for( i = 1; i < T_size; i++ )
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001284 {
Hanno Beckerce29ae82022-01-04 04:55:11 +00001285 MPI_ECP_MUL( &c[i], &c[i-1], &T[i]->Z );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001286 }
1287
1288 /*
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001289 * c[n] = 1 / (Z_0 * ... * Z_n) mod P
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001290 */
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001291 MPI_ECP_INV( &c[T_size-1], &c[T_size-1] );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001292
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001293 for( i = T_size - 1; ; i-- )
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001294 {
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001295 /* At the start of iteration i (note that i decrements), we have
1296 * - c[j] = Z_0 * .... * Z_j for j < i,
1297 * - c[j] = 1 / (Z_0 * .... * Z_j) for j == i,
1298 *
1299 * This is maintained via
1300 * - c[i-1] <- c[i] * Z_i
1301 *
1302 * We also derive 1/Z_i = c[i] * c[i-1] for i>0 and use that
1303 * to do the actual normalization. For i==0, we already have
1304 * c[0] = 1 / Z_0.
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001305 */
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001306
1307 if( i > 0 )
Hanno Beckerce29ae82022-01-04 04:55:11 +00001308 {
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001309 /* Compute 1/Z_i and establish invariant for the next iteration. */
1310 MPI_ECP_MUL( &t, &c[i], &c[i-1] );
1311 MPI_ECP_MUL( &c[i-1], &c[i], &T[i]->Z );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001312 }
1313 else
1314 {
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001315 MPI_ECP_MOV( &t, &c[0] );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001316 }
1317
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001318 /* Now t holds 1 / Z_i; normalize as in ecp_normalize_jac() */
1319 MPI_ECP_MUL( &T[i]->Y, &T[i]->Y, &t );
Hanno Becker885ed402022-01-04 06:43:50 +00001320 MPI_ECP_SQR( &t, &t );
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001321 MPI_ECP_MUL( &T[i]->X, &T[i]->X, &t );
1322 MPI_ECP_MUL( &T[i]->Y, &T[i]->Y, &t );
Manuel Pégourié-Gonnard1f789b82013-12-30 17:31:56 +01001323
1324 /*
1325 * Post-precessing: reclaim some memory by shrinking coordinates
1326 * - not storing Z (always 1)
1327 * - shrinking other coordinates, but still keeping the same number of
1328 * limbs as P, as otherwise it will too likely be regrown too fast.
1329 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001330 MBEDTLS_MPI_CHK( mbedtls_mpi_shrink( &T[i]->X, grp->P.n ) );
1331 MBEDTLS_MPI_CHK( mbedtls_mpi_shrink( &T[i]->Y, grp->P.n ) );
Hanno Beckeree95f6c2022-01-09 05:46:18 +00001332
1333 MPI_ECP_LSET( &T[i]->Z, 1 );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001334
1335 if( i == 0 )
1336 break;
1337 }
1338
1339cleanup:
1340
Hanno Beckerb8442cd2022-01-04 06:32:11 +00001341 mbedtls_mpi_free( &t );
Hanno Beckerbae30232022-01-10 12:25:05 +00001342 mpi_free_many( c, T_size );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001343 mbedtls_free( c );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001344
1345 return( ret );
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001346#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT) */
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001347}
1348
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001349/*
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +01001350 * Conditional point inversion: Q -> -Q = (Q.X, -Q.Y, Q.Z) without leak.
1351 * "inv" must be 0 (don't invert) or 1 (invert) or the result will be invalid
1352 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001353static int ecp_safe_invert_jac( const mbedtls_ecp_group *grp,
1354 mbedtls_ecp_point *Q,
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +01001355 unsigned char inv )
1356{
Janos Follath24eed8d2019-11-22 13:21:35 +00001357 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Hanno Becker595616e2022-01-05 08:28:24 +00001358 mbedtls_mpi tmp;
1359 mbedtls_mpi_init( &tmp );
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +01001360
Hanno Becker595616e2022-01-05 08:28:24 +00001361 MPI_ECP_COND_NEG( &Q->Y, inv );
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +01001362
1363cleanup:
Hanno Becker595616e2022-01-05 08:28:24 +00001364 mbedtls_mpi_free( &tmp );
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +01001365 return( ret );
1366}
1367
1368/*
Manuel Pégourié-Gonnard0cd6f982013-10-10 15:55:39 +02001369 * Point doubling R = 2 P, Jacobian coordinates
Manuel Pégourié-Gonnard0ace4b32013-10-10 12:44:27 +02001370 *
Peter Dettmance661b22015-02-07 14:43:51 +07001371 * Based on http://www.hyperelliptic.org/EFD/g1p/auto-shortw-jacobian.html#doubling-dbl-1998-cmo-2 .
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001372 *
Peter Dettmance661b22015-02-07 14:43:51 +07001373 * We follow the variable naming fairly closely. The formula variations that trade a MUL for a SQR
1374 * (plus a few ADDs) aren't useful as our bignum implementation doesn't distinguish squaring.
1375 *
1376 * Standard optimizations are applied when curve parameter A is one of { 0, -3 }.
1377 *
1378 * Cost: 1D := 3M + 4S (A == 0)
1379 * 4M + 4S (A == -3)
1380 * 3M + 6S + 1a otherwise
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +02001381 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001382static int ecp_double_jac( const mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001383 const mbedtls_ecp_point *P,
1384 mbedtls_mpi tmp[4] )
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +02001385{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001386#if defined(MBEDTLS_SELF_TEST)
Manuel Pégourié-Gonnard0cd6f982013-10-10 15:55:39 +02001387 dbl_count++;
1388#endif
1389
Janos Follathb0697532016-08-18 12:38:46 +01001390#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02001391 if( mbedtls_internal_ecp_grp_capable( grp ) )
1392 return( mbedtls_internal_ecp_double_jac( grp, R, P ) );
Janos Follath372697b2016-10-28 16:53:11 +01001393#endif /* MBEDTLS_ECP_DOUBLE_JAC_ALT */
Janos Follathb0697532016-08-18 12:38:46 +01001394
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001395#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_DOUBLE_JAC_ALT)
1396 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
1397#else
1398 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +01001399
1400 /* Special case for A = -3 */
1401 if( grp->A.p == NULL )
1402 {
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001403 /* tmp[0] <- M = 3(X + Z^2)(X - Z^2) */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001404 MPI_ECP_SQR( &tmp[1], &P->Z );
1405 MPI_ECP_ADD( &tmp[2], &P->X, &tmp[1] );
1406 MPI_ECP_SUB( &tmp[3], &P->X, &tmp[1] );
1407 MPI_ECP_MUL( &tmp[1], &tmp[2], &tmp[3] );
1408 MPI_ECP_MUL_INT( &tmp[0], &tmp[1], 3 );
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +01001409 }
1410 else
Peter Vaskovica676acf2014-08-06 00:48:39 +02001411 {
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001412 /* tmp[0] <- M = 3.X^2 + A.Z^4 */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001413 MPI_ECP_SQR( &tmp[1], &P->X );
1414 MPI_ECP_MUL_INT( &tmp[0], &tmp[1], 3 );
Peter Dettmance661b22015-02-07 14:43:51 +07001415
1416 /* Optimize away for "koblitz" curves with A = 0 */
Hanno Becker595616e2022-01-05 08:28:24 +00001417 if( MPI_ECP_CMP_INT( &grp->A, 0 ) != 0 )
Peter Dettmance661b22015-02-07 14:43:51 +07001418 {
1419 /* M += A.Z^4 */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001420 MPI_ECP_SQR( &tmp[1], &P->Z );
1421 MPI_ECP_SQR( &tmp[2], &tmp[1] );
1422 MPI_ECP_MUL( &tmp[1], &tmp[2], &grp->A );
1423 MPI_ECP_ADD( &tmp[0], &tmp[0], &tmp[1] );
Peter Dettmance661b22015-02-07 14:43:51 +07001424 }
Peter Vaskovica676acf2014-08-06 00:48:39 +02001425 }
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +01001426
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001427 /* tmp[1] <- S = 4.X.Y^2 */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001428 MPI_ECP_SQR( &tmp[2], &P->Y );
1429 MPI_ECP_SHIFT_L( &tmp[2], 1 );
1430 MPI_ECP_MUL( &tmp[1], &P->X, &tmp[2] );
1431 MPI_ECP_SHIFT_L( &tmp[1], 1 );
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +02001432
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001433 /* tmp[3] <- U = 8.Y^4 */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001434 MPI_ECP_SQR( &tmp[3], &tmp[2] );
1435 MPI_ECP_SHIFT_L( &tmp[3], 1 );
Peter Dettmance661b22015-02-07 14:43:51 +07001436
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001437 /* tmp[2] <- T = M^2 - 2.S */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001438 MPI_ECP_SQR( &tmp[2], &tmp[0] );
1439 MPI_ECP_SUB( &tmp[2], &tmp[2], &tmp[1] );
1440 MPI_ECP_SUB( &tmp[2], &tmp[2], &tmp[1] );
Peter Dettmance661b22015-02-07 14:43:51 +07001441
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001442 /* tmp[1] <- S = M(S - T) - U */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001443 MPI_ECP_SUB( &tmp[1], &tmp[1], &tmp[2] );
1444 MPI_ECP_MUL( &tmp[1], &tmp[1], &tmp[0] );
1445 MPI_ECP_SUB( &tmp[1], &tmp[1], &tmp[3] );
Peter Dettmance661b22015-02-07 14:43:51 +07001446
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001447 /* tmp[3] <- U = 2.Y.Z */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001448 MPI_ECP_MUL( &tmp[3], &P->Y, &P->Z );
1449 MPI_ECP_SHIFT_L( &tmp[3], 1 );
Peter Dettmance661b22015-02-07 14:43:51 +07001450
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001451 /* Store results */
Hanno Becker595616e2022-01-05 08:28:24 +00001452 MPI_ECP_MOV( &R->X, &tmp[2] );
1453 MPI_ECP_MOV( &R->Y, &tmp[1] );
1454 MPI_ECP_MOV( &R->Z, &tmp[3] );
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +02001455
1456cleanup:
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +02001457
1458 return( ret );
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001459#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) */
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +02001460}
1461
1462/*
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001463 * Addition: R = P + Q, mixed affine-Jacobian coordinates (GECC 3.22)
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +01001464 *
1465 * The coordinates of Q must be normalized (= affine),
1466 * but those of P don't need to. R is not normalized.
1467 *
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001468 * P,Q,R may alias, but only at the level of EC points: they must be either
1469 * equal as pointers, or disjoint (including the coordinate data buffers).
1470 * Fine-grained aliasing at the level of coordinates is not supported.
1471 *
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001472 * Special cases: (1) P or Q is zero, (2) R is zero, (3) P == Q.
Manuel Pégourié-Gonnard7a949d32013-12-05 10:26:01 +01001473 * None of these cases can happen as intermediate step in ecp_mul_comb():
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001474 * - at each step, P, Q and R are multiples of the base point, the factor
1475 * being less than its order, so none of them is zero;
1476 * - Q is an odd multiple of the base point, P an even multiple,
1477 * due to the choice of precomputed points in the modified comb method.
1478 * So branches for these cases do not leak secret information.
1479 *
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001480 * Cost: 1A := 8M + 3S
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001481 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001482static int ecp_add_mixed( const mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
Hanno Becker3b29f212022-01-04 07:34:14 +00001483 const mbedtls_ecp_point *P, const mbedtls_ecp_point *Q,
1484 mbedtls_mpi tmp[4] )
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001485{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001486#if defined(MBEDTLS_SELF_TEST)
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001487 add_count++;
1488#endif
1489
Janos Follathb0697532016-08-18 12:38:46 +01001490#if defined(MBEDTLS_ECP_ADD_MIXED_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02001491 if( mbedtls_internal_ecp_grp_capable( grp ) )
1492 return( mbedtls_internal_ecp_add_mixed( grp, R, P, Q ) );
Janos Follath372697b2016-10-28 16:53:11 +01001493#endif /* MBEDTLS_ECP_ADD_MIXED_ALT */
Janos Follathb0697532016-08-18 12:38:46 +01001494
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001495#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_ADD_MIXED_ALT)
1496 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
1497#else
1498 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Hanno Becker838b7152022-01-04 05:01:53 +00001499
1500 /* NOTE: Aliasing between input and output is allowed, so one has to make
1501 * sure that at the point X,Y,Z are written, {P,Q}->{X,Y,Z} are no
1502 * longer read from. */
Hanno Becker5c8ea302022-01-01 06:01:45 +00001503 mbedtls_mpi * const X = &R->X;
1504 mbedtls_mpi * const Y = &R->Y;
1505 mbedtls_mpi * const Z = &R->Z;
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001506
Hanno Beckeree95f6c2022-01-09 05:46:18 +00001507 if( !MPI_ECP_VALID( &Q->Z ) )
1508 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
1509
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001510 /*
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001511 * Trivial cases: P == 0 or Q == 0 (case 1)
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001512 */
Hanno Beckerc27a0e02022-01-06 05:56:34 +00001513 if( MPI_ECP_CMP_INT( &P->Z, 0 ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001514 return( mbedtls_ecp_copy( R, Q ) );
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001515
Hanno Beckeree95f6c2022-01-09 05:46:18 +00001516 if( MPI_ECP_CMP_INT( &Q->Z, 0 ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001517 return( mbedtls_ecp_copy( R, P ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +01001518
1519 /*
1520 * Make sure Q coordinates are normalized
1521 */
Hanno Beckeree95f6c2022-01-09 05:46:18 +00001522 if( MPI_ECP_CMP_INT( &Q->Z, 1 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001523 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001524
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001525 MPI_ECP_SQR( &tmp[0], &P->Z );
1526 MPI_ECP_MUL( &tmp[1], &tmp[0], &P->Z );
1527 MPI_ECP_MUL( &tmp[0], &tmp[0], &Q->X );
1528 MPI_ECP_MUL( &tmp[1], &tmp[1], &Q->Y );
1529 MPI_ECP_SUB( &tmp[0], &tmp[0], &P->X );
1530 MPI_ECP_SUB( &tmp[1], &tmp[1], &P->Y );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001531
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001532 /* Special cases (2) and (3) */
Hanno Becker595616e2022-01-05 08:28:24 +00001533 if( MPI_ECP_CMP_INT( &tmp[0], 0 ) == 0 )
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001534 {
Hanno Becker595616e2022-01-05 08:28:24 +00001535 if( MPI_ECP_CMP_INT( &tmp[1], 0 ) == 0 )
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001536 {
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001537 ret = ecp_double_jac( grp, R, P, tmp );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001538 goto cleanup;
1539 }
1540 else
1541 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001542 ret = mbedtls_ecp_set_zero( R );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001543 goto cleanup;
1544 }
1545 }
1546
Hanno Becker838b7152022-01-04 05:01:53 +00001547 /* {P,Q}->Z no longer used, so OK to write to Z even if there's aliasing. */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001548 MPI_ECP_MUL( Z, &P->Z, &tmp[0] );
1549 MPI_ECP_SQR( &tmp[2], &tmp[0] );
1550 MPI_ECP_MUL( &tmp[3], &tmp[2], &tmp[0] );
1551 MPI_ECP_MUL( &tmp[2], &tmp[2], &P->X );
Hanno Beckerce29ae82022-01-04 04:55:11 +00001552
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001553 MPI_ECP_MOV( &tmp[0], &tmp[2] );
1554 MPI_ECP_SHIFT_L( &tmp[0], 1 );
Hanno Beckerce29ae82022-01-04 04:55:11 +00001555
Hanno Becker838b7152022-01-04 05:01:53 +00001556 /* {P,Q}->X no longer used, so OK to write to X even if there's aliasing. */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001557 MPI_ECP_SQR( X, &tmp[1] );
1558 MPI_ECP_SUB( X, X, &tmp[0] );
1559 MPI_ECP_SUB( X, X, &tmp[3] );
1560 MPI_ECP_SUB( &tmp[2], &tmp[2], X );
1561 MPI_ECP_MUL( &tmp[2], &tmp[2], &tmp[1] );
1562 MPI_ECP_MUL( &tmp[3], &tmp[3], &P->Y );
Hanno Becker838b7152022-01-04 05:01:53 +00001563 /* {P,Q}->Y no longer used, so OK to write to Y even if there's aliasing. */
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001564 MPI_ECP_SUB( Y, &tmp[2], &tmp[3] );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001565
1566cleanup:
1567
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001568 return( ret );
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001569#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_ADD_MIXED_ALT) */
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001570}
1571
1572/*
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001573 * Randomize jacobian coordinates:
1574 * (X, Y, Z) -> (l^2 X, l^3 Y, l Z) for random l
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +01001575 * This is sort of the reverse operation of ecp_normalize_jac().
Manuel Pégourié-Gonnard44aab792013-11-21 10:53:59 +01001576 *
1577 * This countermeasure was first suggested in [2].
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001578 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001579static int ecp_randomize_jac( const mbedtls_ecp_group *grp, mbedtls_ecp_point *pt,
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001580 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
1581{
Janos Follathb0697532016-08-18 12:38:46 +01001582#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02001583 if( mbedtls_internal_ecp_grp_capable( grp ) )
1584 return( mbedtls_internal_ecp_randomize_jac( grp, pt, f_rng, p_rng ) );
Janos Follath372697b2016-10-28 16:53:11 +01001585#endif /* MBEDTLS_ECP_RANDOMIZE_JAC_ALT */
Janos Follathb0697532016-08-18 12:38:46 +01001586
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001587#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT)
1588 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
1589#else
1590 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Hanno Becker0d629792022-01-04 06:45:49 +00001591 mbedtls_mpi l;
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001592
Hanno Becker0d629792022-01-04 06:45:49 +00001593 mbedtls_mpi_init( &l );
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001594
1595 /* Generate l such that 1 < l < p */
Hanno Becker595616e2022-01-05 08:28:24 +00001596 MPI_ECP_RAND( &l );
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001597
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001598 /* Z' = l * Z */
Hanno Becker0d629792022-01-04 06:45:49 +00001599 MPI_ECP_MUL( &pt->Z, &pt->Z, &l );
1600
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001601 /* Y' = l * Y */
Hanno Becker0d629792022-01-04 06:45:49 +00001602 MPI_ECP_MUL( &pt->Y, &pt->Y, &l );
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001603
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001604 /* X' = l^2 * X */
Hanno Becker0d629792022-01-04 06:45:49 +00001605 MPI_ECP_SQR( &l, &l );
1606 MPI_ECP_MUL( &pt->X, &pt->X, &l );
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001607
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001608 /* Y'' = l^2 * Y' = l^3 * Y */
Hanno Becker0d629792022-01-04 06:45:49 +00001609 MPI_ECP_MUL( &pt->Y, &pt->Y, &l );
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001610
1611cleanup:
Hanno Becker0d629792022-01-04 06:45:49 +00001612 mbedtls_mpi_free( &l );
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001613
Gilles Peskine59215172021-03-29 22:28:50 +02001614 if( ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE )
1615 ret = MBEDTLS_ERR_ECP_RANDOM_FAILED;
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001616 return( ret );
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01001617#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT) */
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001618}
1619
1620/*
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001621 * Check and define parameters used by the comb method (see below for details)
1622 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001623#if MBEDTLS_ECP_WINDOW_SIZE < 2 || MBEDTLS_ECP_WINDOW_SIZE > 7
1624#error "MBEDTLS_ECP_WINDOW_SIZE out of bounds"
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001625#endif
1626
1627/* d = ceil( n / w ) */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001628#define COMB_MAX_D ( MBEDTLS_ECP_MAX_BITS + 1 ) / 2
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001629
1630/* number of precomputed points */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001631#define COMB_MAX_PRE ( 1 << ( MBEDTLS_ECP_WINDOW_SIZE - 1 ) )
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001632
1633/*
1634 * Compute the representation of m that will be used with our comb method.
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001635 *
1636 * The basic comb method is described in GECC 3.44 for example. We use a
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001637 * modified version that provides resistance to SPA by avoiding zero
1638 * digits in the representation as in [3]. We modify the method further by
1639 * requiring that all K_i be odd, which has the small cost that our
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001640 * representation uses one more K_i, due to carries, but saves on the size of
1641 * the precomputed table.
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001642 *
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001643 * Summary of the comb method and its modifications:
1644 *
1645 * - The goal is to compute m*P for some w*d-bit integer m.
1646 *
1647 * - The basic comb method splits m into the w-bit integers
1648 * x[0] .. x[d-1] where x[i] consists of the bits in m whose
1649 * index has residue i modulo d, and computes m * P as
1650 * S[x[0]] + 2 * S[x[1]] + .. + 2^(d-1) S[x[d-1]], where
1651 * S[i_{w-1} .. i_0] := i_{w-1} 2^{(w-1)d} P + ... + i_1 2^d P + i_0 P.
1652 *
1653 * - If it happens that, say, x[i+1]=0 (=> S[x[i+1]]=0), one can replace the sum by
1654 * .. + 2^{i-1} S[x[i-1]] - 2^i S[x[i]] + 2^{i+1} S[x[i]] + 2^{i+2} S[x[i+2]] ..,
1655 * thereby successively converting it into a form where all summands
1656 * are nonzero, at the cost of negative summands. This is the basic idea of [3].
1657 *
1658 * - More generally, even if x[i+1] != 0, we can first transform the sum as
1659 * .. - 2^i S[x[i]] + 2^{i+1} ( S[x[i]] + S[x[i+1]] ) + 2^{i+2} S[x[i+2]] ..,
1660 * and then replace S[x[i]] + S[x[i+1]] = S[x[i] ^ x[i+1]] + 2 S[x[i] & x[i+1]].
1661 * Performing and iterating this procedure for those x[i] that are even
1662 * (keeping track of carry), we can transform the original sum into one of the form
1663 * S[x'[0]] +- 2 S[x'[1]] +- .. +- 2^{d-1} S[x'[d-1]] + 2^d S[x'[d]]
1664 * with all x'[i] odd. It is therefore only necessary to know S at odd indices,
1665 * which is why we are only computing half of it in the first place in
1666 * ecp_precompute_comb and accessing it with index abs(i) / 2 in ecp_select_comb.
1667 *
1668 * - For the sake of compactness, only the seven low-order bits of x[i]
1669 * are used to represent its absolute value (K_i in the paper), and the msb
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001670 * of x[i] encodes the sign (s_i in the paper): it is set if and only if
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001671 * if s_i == -1;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001672 *
1673 * Calling conventions:
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001674 * - x is an array of size d + 1
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001675 * - w is the size, ie number of teeth, of the comb, and must be between
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001676 * 2 and 7 (in practice, between 2 and MBEDTLS_ECP_WINDOW_SIZE)
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001677 * - m is the MPI, expected to be odd and such that bitlength(m) <= w * d
1678 * (the result will be incorrect if these assumptions are not satisfied)
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001679 */
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01001680static void ecp_comb_recode_core( unsigned char x[], size_t d,
1681 unsigned char w, const mbedtls_mpi *m )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001682{
1683 size_t i, j;
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001684 unsigned char c, cc, adjust;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001685
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001686 memset( x, 0, d+1 );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001687
Manuel Pégourié-Gonnardedc1a1f2013-11-21 09:50:00 +01001688 /* First get the classical comb values (except for x_d = 0) */
1689 for( i = 0; i < d; i++ )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001690 for( j = 0; j < w; j++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001691 x[i] |= mbedtls_mpi_get_bit( m, i + d * j ) << j;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001692
Manuel Pégourié-Gonnardedc1a1f2013-11-21 09:50:00 +01001693 /* Now make sure x_1 .. x_d are odd */
1694 c = 0;
1695 for( i = 1; i <= d; i++ )
1696 {
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001697 /* Add carry and update it */
1698 cc = x[i] & c;
1699 x[i] = x[i] ^ c;
1700 c = cc;
1701
Manuel Pégourié-Gonnardedc1a1f2013-11-21 09:50:00 +01001702 /* Adjust if needed, avoiding branches */
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001703 adjust = 1 - ( x[i] & 0x01 );
1704 c |= x[i] & ( x[i-1] * adjust );
1705 x[i] = x[i] ^ ( x[i-1] * adjust );
1706 x[i-1] |= adjust << 7;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001707 }
1708}
1709
1710/*
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001711 * Precompute points for the adapted comb method
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001712 *
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001713 * Assumption: T must be able to hold 2^{w - 1} elements.
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001714 *
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001715 * Operation: If i = i_{w-1} ... i_1 is the binary representation of i,
1716 * sets T[i] = i_{w-1} 2^{(w-1)d} P + ... + i_1 2^d P + P.
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001717 *
1718 * Cost: d(w-1) D + (2^{w-1} - 1) A + 1 N(w-1) + 1 N(2^{w-1} - 1)
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001719 *
1720 * Note: Even comb values (those where P would be omitted from the
1721 * sum defining T[i] above) are not needed in our adaption
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001722 * the comb method. See ecp_comb_recode_core().
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001723 *
1724 * This function currently works in four steps:
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001725 * (1) [dbl] Computation of intermediate T[i] for 2-power values of i
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001726 * (2) [norm_dbl] Normalization of coordinates of these T[i]
1727 * (3) [add] Computation of all T[i]
1728 * (4) [norm_add] Normalization of all T[i]
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001729 *
1730 * Step 1 can be interrupted but not the others; together with the final
1731 * coordinate normalization they are the largest steps done at once, depending
1732 * on the window size. Here are operation counts for P-256:
1733 *
1734 * step (2) (3) (4)
1735 * w = 5 142 165 208
1736 * w = 4 136 77 160
1737 * w = 3 130 33 136
1738 * w = 2 124 11 124
1739 *
1740 * So if ECC operations are blocking for too long even with a low max_ops
1741 * value, it's useful to set MBEDTLS_ECP_WINDOW_SIZE to a lower value in order
1742 * to minimize maximum blocking time.
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001743 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001744static int ecp_precompute_comb( const mbedtls_ecp_group *grp,
1745 mbedtls_ecp_point T[], const mbedtls_ecp_point *P,
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001746 unsigned char w, size_t d,
1747 mbedtls_ecp_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001748{
Janos Follath24eed8d2019-11-22 13:21:35 +00001749 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardfc3e0be2017-03-20 09:29:31 +01001750 unsigned char i;
Manuel Pégourié-Gonnard213541a2017-03-20 12:50:41 +01001751 size_t j = 0;
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001752 const unsigned char T_size = 1U << ( w - 1 );
Leonid Rozenboima3008e72022-04-21 17:28:18 -07001753 mbedtls_ecp_point *cur, *TT[COMB_MAX_PRE - 1] = {NULL};
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001754
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001755 mbedtls_mpi tmp[4];
1756
Hanno Becker466df6e2022-01-10 11:16:51 +00001757 mpi_init_many( tmp, sizeof( tmp ) / sizeof( mbedtls_mpi ) );
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001758
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001759#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001760 if( rs_ctx != NULL && rs_ctx->rsm != NULL )
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01001761 {
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001762 if( rs_ctx->rsm->state == ecp_rsm_pre_dbl )
1763 goto dbl;
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001764 if( rs_ctx->rsm->state == ecp_rsm_pre_norm_dbl )
Manuel Pégourié-Gonnarde2d7cb32017-03-20 10:24:17 +01001765 goto norm_dbl;
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001766 if( rs_ctx->rsm->state == ecp_rsm_pre_add )
1767 goto add;
1768 if( rs_ctx->rsm->state == ecp_rsm_pre_norm_add )
1769 goto norm_add;
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01001770 }
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001771#else
1772 (void) rs_ctx;
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01001773#endif
1774
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001775#if defined(MBEDTLS_ECP_RESTARTABLE)
1776 if( rs_ctx != NULL && rs_ctx->rsm != NULL )
1777 {
1778 rs_ctx->rsm->state = ecp_rsm_pre_dbl;
1779
1780 /* initial state for the loop */
1781 rs_ctx->rsm->i = 0;
1782 }
1783
1784dbl:
1785#endif
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001786 /*
1787 * Set T[0] = P and
1788 * T[2^{l-1}] = 2^{dl} P for l = 1 .. w-1 (this is not the final value)
1789 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001790 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( &T[0], P ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001791
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001792#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001793 if( rs_ctx != NULL && rs_ctx->rsm != NULL && rs_ctx->rsm->i != 0 )
1794 j = rs_ctx->rsm->i;
Manuel Pégourié-Gonnard213541a2017-03-20 12:50:41 +01001795 else
1796#endif
1797 j = 0;
1798
1799 for( ; j < d * ( w - 1 ); j++ )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001800 {
Manuel Pégourié-Gonnardc7511482017-04-20 16:31:00 +02001801 MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_DBL );
Manuel Pégourié-Gonnard213541a2017-03-20 12:50:41 +01001802
Manuel Pégourié-Gonnardae557072017-03-20 12:21:24 +01001803 i = 1U << ( j / d );
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001804 cur = T + i;
Manuel Pégourié-Gonnardae557072017-03-20 12:21:24 +01001805
1806 if( j % d == 0 )
1807 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( cur, T + ( i >> 1 ) ) );
1808
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001809 MBEDTLS_MPI_CHK( ecp_double_jac( grp, cur, cur, tmp ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001810 }
1811
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001812#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001813 if( rs_ctx != NULL && rs_ctx->rsm != NULL )
1814 rs_ctx->rsm->state = ecp_rsm_pre_norm_dbl;
1815
Manuel Pégourié-Gonnarde2d7cb32017-03-20 10:24:17 +01001816norm_dbl:
1817#endif
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001818 /*
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00001819 * Normalize current elements in T to allow them to be used in
1820 * ecp_add_mixed() below, which requires one normalized input.
1821 *
1822 * As T has holes, use an auxiliary array of pointers to elements in T.
1823 *
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001824 */
Manuel Pégourié-Gonnardfc3e0be2017-03-20 09:29:31 +01001825 j = 0;
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001826 for( i = 1; i < T_size; i <<= 1 )
Manuel Pégourié-Gonnardfc3e0be2017-03-20 09:29:31 +01001827 TT[j++] = T + i;
1828
Manuel Pégourié-Gonnardc7511482017-04-20 16:31:00 +02001829 MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_INV + 6 * j - 2 );
Manuel Pégourié-Gonnarde2d7cb32017-03-20 10:24:17 +01001830
Manuel Pégourié-Gonnardfc3e0be2017-03-20 09:29:31 +01001831 MBEDTLS_MPI_CHK( ecp_normalize_jac_many( grp, TT, j ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001832
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001833#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001834 if( rs_ctx != NULL && rs_ctx->rsm != NULL )
1835 rs_ctx->rsm->state = ecp_rsm_pre_add;
1836
Manuel Pégourié-Gonnarde2d7cb32017-03-20 10:24:17 +01001837add:
1838#endif
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001839 /*
1840 * Compute the remaining ones using the minimal number of additions
1841 * Be careful to update T[2^l] only after using it!
1842 */
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001843 MBEDTLS_ECP_BUDGET( ( T_size - 1 ) * MBEDTLS_ECP_OPS_ADD );
Manuel Pégourié-Gonnarde2d7cb32017-03-20 10:24:17 +01001844
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001845 for( i = 1; i < T_size; i <<= 1 )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001846 {
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001847 j = i;
1848 while( j-- )
Hanno Becker3b29f212022-01-04 07:34:14 +00001849 MBEDTLS_MPI_CHK( ecp_add_mixed( grp, &T[i + j], &T[j], &T[i], tmp ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001850 }
1851
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001852#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001853 if( rs_ctx != NULL && rs_ctx->rsm != NULL )
1854 rs_ctx->rsm->state = ecp_rsm_pre_norm_add;
1855
Manuel Pégourié-Gonnarde2d7cb32017-03-20 10:24:17 +01001856norm_add:
1857#endif
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001858 /*
Manuel Pégourié-Gonnarda966fde2018-10-23 10:41:11 +02001859 * Normalize final elements in T. Even though there are no holes now, we
1860 * still need the auxiliary array for homogeneity with the previous
1861 * call. Also, skip T[0] which is already normalised, being a copy of P.
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02001862 */
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001863 for( j = 0; j + 1 < T_size; j++ )
Manuel Pégourié-Gonnardfc3e0be2017-03-20 09:29:31 +01001864 TT[j] = T + j + 1;
1865
Manuel Pégourié-Gonnardc7511482017-04-20 16:31:00 +02001866 MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_INV + 6 * j - 2 );
Manuel Pégourié-Gonnarde2d7cb32017-03-20 10:24:17 +01001867
Manuel Pégourié-Gonnardfc3e0be2017-03-20 09:29:31 +01001868 MBEDTLS_MPI_CHK( ecp_normalize_jac_many( grp, TT, j ) );
Manuel Pégourié-Gonnarde2820122013-11-21 10:08:50 +01001869
Hanno Beckeree95f6c2022-01-09 05:46:18 +00001870 /* Free Z coordinate (=1 after normalization) to save RAM.
1871 * This makes T[i] invalid as mbedtls_ecp_points, but this is OK
1872 * since from this point onwards, they are only accessed indirectly
1873 * via the getter function ecp_select_comb() which does set the
1874 * target's Z coordinate to 1. */
1875 for( i = 0; i < T_size; i++ )
1876 mbedtls_mpi_free( &T[i].Z );
1877
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001878cleanup:
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001879
Hanno Becker466df6e2022-01-10 11:16:51 +00001880 mpi_free_many( tmp, sizeof( tmp ) / sizeof( mbedtls_mpi ) );
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001881
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001882#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001883 if( rs_ctx != NULL && rs_ctx->rsm != NULL &&
1884 ret == MBEDTLS_ERR_ECP_IN_PROGRESS )
Manuel Pégourié-Gonnard213541a2017-03-20 12:50:41 +01001885 {
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001886 if( rs_ctx->rsm->state == ecp_rsm_pre_dbl )
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001887 rs_ctx->rsm->i = j;
Manuel Pégourié-Gonnard213541a2017-03-20 12:50:41 +01001888 }
1889#endif
Janos Follathb0697532016-08-18 12:38:46 +01001890
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001891 return( ret );
1892}
1893
1894/*
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001895 * Select precomputed point: R = sign(i) * T[ abs(i) / 2 ]
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02001896 *
1897 * See ecp_comb_recode_core() for background
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001898 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001899static int ecp_select_comb( const mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001900 const mbedtls_ecp_point T[], unsigned char T_size,
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001901 unsigned char i )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001902{
Janos Follath24eed8d2019-11-22 13:21:35 +00001903 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001904 unsigned char ii, j;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001905
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001906 /* Ignore the "sign" bit and scale down */
1907 ii = ( i & 0x7Fu ) >> 1;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001908
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001909 /* Read the whole table to thwart cache-based timing attacks */
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001910 for( j = 0; j < T_size; j++ )
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001911 {
Hanno Beckerc27a0e02022-01-06 05:56:34 +00001912 MPI_ECP_COND_ASSIGN( &R->X, &T[j].X, j == ii );
1913 MPI_ECP_COND_ASSIGN( &R->Y, &T[j].Y, j == ii );
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001914 }
1915
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +01001916 /* Safely invert result if i is "negative" */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001917 MBEDTLS_MPI_CHK( ecp_safe_invert_jac( grp, R, i >> 7 ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001918
Hanno Becker595616e2022-01-05 08:28:24 +00001919 MPI_ECP_LSET( &R->Z, 1 );
Hanno Becker6a288702022-01-05 05:19:48 +00001920
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001921cleanup:
1922 return( ret );
1923}
1924
1925/*
1926 * Core multiplication algorithm for the (modified) comb method.
1927 * This part is actually common with the basic comb method (GECC 3.44)
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001928 *
1929 * Cost: d A + d D + 1 R
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001930 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001931static int ecp_mul_comb_core( const mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001932 const mbedtls_ecp_point T[], unsigned char T_size,
Manuel Pégourié-Gonnard70c14372013-11-20 20:07:26 +01001933 const unsigned char x[], size_t d,
1934 int (*f_rng)(void *, unsigned char *, size_t),
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001935 void *p_rng,
1936 mbedtls_ecp_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001937{
Janos Follath24eed8d2019-11-22 13:21:35 +00001938 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001939 mbedtls_ecp_point Txi;
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001940 mbedtls_mpi tmp[4];
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001941 size_t i;
1942
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001943 mbedtls_ecp_point_init( &Txi );
Hanno Becker466df6e2022-01-10 11:16:51 +00001944 mpi_init_many( tmp, sizeof( tmp ) / sizeof( mbedtls_mpi ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001945
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001946#if !defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001947 (void) rs_ctx;
1948#endif
1949
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001950#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001951 if( rs_ctx != NULL && rs_ctx->rsm != NULL &&
1952 rs_ctx->rsm->state != ecp_rsm_comb_core )
1953 {
1954 rs_ctx->rsm->i = 0;
1955 rs_ctx->rsm->state = ecp_rsm_comb_core;
1956 }
1957
1958 /* new 'if' instead of nested for the sake of the 'else' branch */
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001959 if( rs_ctx != NULL && rs_ctx->rsm != NULL && rs_ctx->rsm->i != 0 )
Manuel Pégourié-Gonnardc5d844b2017-03-15 13:06:28 +01001960 {
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02001961 /* restore current index (R already pointing to rs_ctx->rsm->R) */
1962 i = rs_ctx->rsm->i;
Manuel Pégourié-Gonnardc5d844b2017-03-15 13:06:28 +01001963 }
1964 else
1965#endif
1966 {
1967 /* Start with a non-zero point and randomize its coordinates */
1968 i = d;
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001969 MBEDTLS_MPI_CHK( ecp_select_comb( grp, R, T, T_size, x[i] ) );
Manuel Pégourié-Gonnardc5d844b2017-03-15 13:06:28 +01001970 if( f_rng != 0 )
1971 MBEDTLS_MPI_CHK( ecp_randomize_jac( grp, R, f_rng, p_rng ) );
1972 }
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001973
Manuel Pégourié-Gonnard90f31b72018-10-16 10:45:24 +02001974 while( i != 0 )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001975 {
Manuel Pégourié-Gonnardc7511482017-04-20 16:31:00 +02001976 MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_DBL + MBEDTLS_ECP_OPS_ADD );
Manuel Pégourié-Gonnard90f31b72018-10-16 10:45:24 +02001977 --i;
1978
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001979 MBEDTLS_MPI_CHK( ecp_double_jac( grp, R, R, tmp ) );
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02001980 MBEDTLS_MPI_CHK( ecp_select_comb( grp, &Txi, T, T_size, x[i] ) );
Hanno Becker3b29f212022-01-04 07:34:14 +00001981 MBEDTLS_MPI_CHK( ecp_add_mixed( grp, R, R, &Txi, tmp ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001982 }
1983
1984cleanup:
Janos Follathb0697532016-08-18 12:38:46 +01001985
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001986 mbedtls_ecp_point_free( &Txi );
Hanno Becker466df6e2022-01-10 11:16:51 +00001987 mpi_free_many( tmp, sizeof( tmp ) / sizeof( mbedtls_mpi ) );
Hanno Beckera7f8edd2022-01-04 07:29:46 +00001988
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02001989#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001990 if( rs_ctx != NULL && rs_ctx->rsm != NULL &&
1991 ret == MBEDTLS_ERR_ECP_IN_PROGRESS )
Manuel Pégourié-Gonnardc5d844b2017-03-15 13:06:28 +01001992 {
Manuel Pégourié-Gonnard90f31b72018-10-16 10:45:24 +02001993 rs_ctx->rsm->i = i;
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02001994 /* no need to save R, already pointing to rs_ctx->rsm->R */
Manuel Pégourié-Gonnardc5d844b2017-03-15 13:06:28 +01001995 }
1996#endif
1997
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001998 return( ret );
1999}
2000
2001/*
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002002 * Recode the scalar to get constant-time comb multiplication
2003 *
2004 * As the actual scalar recoding needs an odd scalar as a starting point,
2005 * this wrapper ensures that by replacing m by N - m if necessary, and
2006 * informs the caller that the result of multiplication will be negated.
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02002007 *
Manuel Pégourié-Gonnardfd87e352017-08-24 14:21:05 +02002008 * This works because we only support large prime order for Short Weierstrass
2009 * curves, so N is always odd hence either m or N - m is.
2010 *
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02002011 * See ecp_comb_recode_core() for background.
Manuel Pégourié-Gonnardec5606a2017-03-09 12:46:45 +01002012 */
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002013static int ecp_comb_recode_scalar( const mbedtls_ecp_group *grp,
2014 const mbedtls_mpi *m,
2015 unsigned char k[COMB_MAX_D + 1],
2016 size_t d,
2017 unsigned char w,
2018 unsigned char *parity_trick )
Manuel Pégourié-Gonnardec5606a2017-03-09 12:46:45 +01002019{
Janos Follath24eed8d2019-11-22 13:21:35 +00002020 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002021 mbedtls_mpi M, mm;
Manuel Pégourié-Gonnardec5606a2017-03-09 12:46:45 +01002022
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002023 mbedtls_mpi_init( &M );
Manuel Pégourié-Gonnardec5606a2017-03-09 12:46:45 +01002024 mbedtls_mpi_init( &mm );
2025
Manuel Pégourié-Gonnardfd87e352017-08-24 14:21:05 +02002026 /* N is always odd (see above), just make extra sure */
Manuel Pégourié-Gonnardec5606a2017-03-09 12:46:45 +01002027 if( mbedtls_mpi_get_bit( &grp->N, 0 ) != 1 )
2028 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
2029
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002030 /* do we need the parity trick? */
2031 *parity_trick = ( mbedtls_mpi_get_bit( m, 0 ) == 0 );
2032
2033 /* execute parity fix in constant time */
2034 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &M, m ) );
Manuel Pégourié-Gonnardec5606a2017-03-09 12:46:45 +01002035 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &mm, &grp->N, m ) );
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002036 MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_assign( &M, &mm, *parity_trick ) );
2037
2038 /* actual scalar recoding */
2039 ecp_comb_recode_core( k, d, w, &M );
Manuel Pégourié-Gonnardec5606a2017-03-09 12:46:45 +01002040
2041cleanup:
2042 mbedtls_mpi_free( &mm );
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002043 mbedtls_mpi_free( &M );
Manuel Pégourié-Gonnardec5606a2017-03-09 12:46:45 +01002044
2045 return( ret );
2046}
2047
2048/*
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002049 * Perform comb multiplication (for short Weierstrass curves)
2050 * once the auxiliary table has been pre-computed.
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002051 *
2052 * Scalar recoding may use a parity trick that makes us compute -m * P,
2053 * if that is the case we'll need to recover m * P at the end.
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002054 */
2055static int ecp_mul_comb_after_precomp( const mbedtls_ecp_group *grp,
2056 mbedtls_ecp_point *R,
2057 const mbedtls_mpi *m,
2058 const mbedtls_ecp_point *T,
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02002059 unsigned char T_size,
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002060 unsigned char w,
2061 size_t d,
2062 int (*f_rng)(void *, unsigned char *, size_t),
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002063 void *p_rng,
2064 mbedtls_ecp_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002065{
Janos Follath24eed8d2019-11-22 13:21:35 +00002066 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard62738e92017-03-14 10:00:21 +01002067 unsigned char parity_trick;
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002068 unsigned char k[COMB_MAX_D + 1];
Manuel Pégourié-Gonnard8962ddb2017-03-14 12:11:21 +01002069 mbedtls_ecp_point *RR = R;
2070
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02002071#if defined(MBEDTLS_ECP_RESTARTABLE)
2072 if( rs_ctx != NULL && rs_ctx->rsm != NULL )
2073 {
2074 RR = &rs_ctx->rsm->R;
2075
2076 if( rs_ctx->rsm->state == ecp_rsm_final_norm )
2077 goto final_norm;
2078 }
Manuel Pégourié-Gonnard8962ddb2017-03-14 12:11:21 +01002079#endif
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002080
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02002081 MBEDTLS_MPI_CHK( ecp_comb_recode_scalar( grp, m, k, d, w,
2082 &parity_trick ) );
2083 MBEDTLS_MPI_CHK( ecp_mul_comb_core( grp, RR, T, T_size, k, d,
2084 f_rng, p_rng, rs_ctx ) );
2085 MBEDTLS_MPI_CHK( ecp_safe_invert_jac( grp, RR, parity_trick ) );
2086
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002087#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002088 if( rs_ctx != NULL && rs_ctx->rsm != NULL )
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02002089 rs_ctx->rsm->state = ecp_rsm_final_norm;
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002090
Manuel Pégourié-Gonnard4ed1dab2017-08-24 11:02:04 +02002091final_norm:
Manuel Pégourié-Gonnard9b8d34e2020-06-08 09:53:20 +02002092 MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_INV );
Manuel Pégourié-Gonnard2fad7ae2017-03-14 13:13:13 +01002093#endif
Manuel Pégourié-Gonnarda4aa89b2020-03-25 12:41:29 +01002094 /*
2095 * Knowledge of the jacobian coordinates may leak the last few bits of the
2096 * scalar [1], and since our MPI implementation isn't constant-flow,
2097 * inversion (used for coordinate normalization) may leak the full value
2098 * of its input via side-channels [2].
2099 *
2100 * [1] https://eprint.iacr.org/2003/191
2101 * [2] https://eprint.iacr.org/2020/055
2102 *
2103 * Avoid the leak by randomizing coordinates before we normalize them.
2104 */
2105 if( f_rng != 0 )
2106 MBEDTLS_MPI_CHK( ecp_randomize_jac( grp, RR, f_rng, p_rng ) );
2107
Manuel Pégourié-Gonnard8962ddb2017-03-14 12:11:21 +01002108 MBEDTLS_MPI_CHK( ecp_normalize_jac( grp, RR ) );
2109
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002110#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard28d16282017-08-23 17:33:27 +02002111 if( rs_ctx != NULL && rs_ctx->rsm != NULL )
2112 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, RR ) );
Manuel Pégourié-Gonnard8962ddb2017-03-14 12:11:21 +01002113#endif
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002114
2115cleanup:
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002116 return( ret );
2117}
2118
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002119/*
Manuel Pégourié-Gonnard4b2336d2017-03-09 13:23:50 +01002120 * Pick window size based on curve size and whether we optimize for base point
2121 */
2122static unsigned char ecp_pick_window_size( const mbedtls_ecp_group *grp,
2123 unsigned char p_eq_g )
2124{
2125 unsigned char w;
2126
2127 /*
2128 * Minimize the number of multiplications, that is minimize
2129 * 10 * d * w + 18 * 2^(w-1) + 11 * d + 7 * w, with d = ceil( nbits / w )
2130 * (see costs of the various parts, with 1S = 1M)
2131 */
2132 w = grp->nbits >= 384 ? 5 : 4;
2133
2134 /*
2135 * If P == G, pre-compute a bit more, since this may be re-used later.
2136 * Just adding one avoids upping the cost of the first mul too much,
2137 * and the memory cost too.
2138 */
2139 if( p_eq_g )
2140 w++;
2141
2142 /*
kXuanba9cb762021-04-08 14:32:06 +08002143 * If static comb table may not be used (!p_eq_g) or static comb table does
2144 * not exists, make sure w is within bounds.
Manuel Pégourié-Gonnard4b2336d2017-03-09 13:23:50 +01002145 * (The last test is useful only for very small curves in the test suite.)
kXuanba9cb762021-04-08 14:32:06 +08002146 *
2147 * The user reduces MBEDTLS_ECP_WINDOW_SIZE does not changes the size of
2148 * static comb table, because the size of static comb table is fixed when
2149 * it is generated.
Manuel Pégourié-Gonnard4b2336d2017-03-09 13:23:50 +01002150 */
k-stachowiak653a4a22019-07-03 14:31:09 +02002151#if( MBEDTLS_ECP_WINDOW_SIZE < 6 )
kXuanba9cb762021-04-08 14:32:06 +08002152 if( (!p_eq_g || !ecp_group_is_static_comb_table(grp)) && w > MBEDTLS_ECP_WINDOW_SIZE )
Manuel Pégourié-Gonnard4b2336d2017-03-09 13:23:50 +01002153 w = MBEDTLS_ECP_WINDOW_SIZE;
k-stachowiak653a4a22019-07-03 14:31:09 +02002154#endif
Manuel Pégourié-Gonnard4b2336d2017-03-09 13:23:50 +01002155 if( w >= grp->nbits )
2156 w = 2;
2157
2158 return( w );
2159}
2160
2161/*
Manuel Pégourié-Gonnard07bf6f52017-03-16 17:21:38 +01002162 * Multiplication using the comb method - for curves in short Weierstrass form
2163 *
2164 * This function is mainly responsible for administrative work:
2165 * - managing the restart context if enabled
Manuel Pégourié-Gonnard11556e22017-08-24 13:41:19 +02002166 * - managing the table of precomputed points (passed between the below two
Shaun Case8b0ecbc2021-12-20 21:14:10 -08002167 * functions): allocation, computation, ownership transfer, freeing.
Manuel Pégourié-Gonnard07bf6f52017-03-16 17:21:38 +01002168 *
2169 * It delegates the actual arithmetic work to:
2170 * ecp_precompute_comb() and ecp_mul_comb_with_precomp()
2171 *
2172 * See comments on ecp_comb_recode_core() regarding the computation strategy.
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002173 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002174static int ecp_mul_comb( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
2175 const mbedtls_mpi *m, const mbedtls_ecp_point *P,
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01002176 int (*f_rng)(void *, unsigned char *, size_t),
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002177 void *p_rng,
2178 mbedtls_ecp_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002179{
Janos Follath24eed8d2019-11-22 13:21:35 +00002180 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard11556e22017-08-24 13:41:19 +02002181 unsigned char w, p_eq_g, i;
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01002182 size_t d;
Manuel Pégourié-Gonnardf2a9fcf2020-06-03 12:11:56 +02002183 unsigned char T_size = 0, T_ok = 0;
2184 mbedtls_ecp_point *T = NULL;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002185
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +02002186 ECP_RS_ENTER( rsm );
Manuel Pégourié-Gonnard510d5ca2017-03-08 11:41:47 +01002187
Manuel Pégourié-Gonnard22be6352017-03-09 13:02:35 +01002188 /* Is P the base point ? */
2189#if MBEDTLS_ECP_FIXED_POINT_OPTIM == 1
Hanno Beckerc27a0e02022-01-06 05:56:34 +00002190 p_eq_g = ( MPI_ECP_CMP( &P->Y, &grp->G.Y ) == 0 &&
2191 MPI_ECP_CMP( &P->X, &grp->G.X ) == 0 );
Manuel Pégourié-Gonnard196d1332017-08-28 13:14:27 +02002192#else
2193 p_eq_g = 0;
Manuel Pégourié-Gonnard22be6352017-03-09 13:02:35 +01002194#endif
2195
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002196 /* Pick window size and deduce related sizes */
Manuel Pégourié-Gonnard4b2336d2017-03-09 13:23:50 +01002197 w = ecp_pick_window_size( grp, p_eq_g );
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02002198 T_size = 1U << ( w - 1 );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002199 d = ( grp->nbits + w - 1 ) / w;
2200
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01002201 /* Pre-computed table: do we have it already for the base point? */
2202 if( p_eq_g && grp->T != NULL )
2203 {
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02002204 /* second pointer to the same table, will be deleted on exit */
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01002205 T = grp->T;
2206 T_ok = 1;
2207 }
Manuel Pégourié-Gonnard11556e22017-08-24 13:41:19 +02002208 else
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002209#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01002210 /* Pre-computed table: do we have one in progress? complete? */
Manuel Pégourié-Gonnard11556e22017-08-24 13:41:19 +02002211 if( rs_ctx != NULL && rs_ctx->rsm != NULL && rs_ctx->rsm->T != NULL )
Manuel Pégourié-Gonnardc9c0aa62017-03-16 14:53:26 +01002212 {
Manuel Pégourié-Gonnard45fd0162017-03-22 08:24:42 +01002213 /* transfer ownership of T from rsm to local function */
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002214 T = rs_ctx->rsm->T;
2215 rs_ctx->rsm->T = NULL;
2216 rs_ctx->rsm->T_size = 0;
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01002217
Manuel Pégourié-Gonnardb25cb602018-10-16 11:48:09 +02002218 /* This effectively jumps to the call to mul_comb_after_precomp() */
Manuel Pégourié-Gonnard11556e22017-08-24 13:41:19 +02002219 T_ok = rs_ctx->rsm->state >= ecp_rsm_comb_core;
Manuel Pégourié-Gonnardc9c0aa62017-03-16 14:53:26 +01002220 }
Manuel Pégourié-Gonnard11556e22017-08-24 13:41:19 +02002221 else
Manuel Pégourié-Gonnardc9c0aa62017-03-16 14:53:26 +01002222#endif
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01002223 /* Allocate table if we didn't have any */
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002224 {
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02002225 T = mbedtls_calloc( T_size, sizeof( mbedtls_ecp_point ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002226 if( T == NULL )
2227 {
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02002228 ret = MBEDTLS_ERR_ECP_ALLOC_FAILED;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002229 goto cleanup;
2230 }
Manuel Pégourié-Gonnard5bd38b12017-08-23 16:55:59 +02002231
2232 for( i = 0; i < T_size; i++ )
2233 mbedtls_ecp_point_init( &T[i] );
Manuel Pégourié-Gonnard11556e22017-08-24 13:41:19 +02002234
2235 T_ok = 0;
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01002236 }
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002237
Manuel Pégourié-Gonnard085b1df2017-03-16 16:56:04 +01002238 /* Compute table (or finish computing it) if not done already */
2239 if( !T_ok )
2240 {
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002241 MBEDTLS_MPI_CHK( ecp_precompute_comb( grp, T, P, w, d, rs_ctx ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002242
2243 if( p_eq_g )
2244 {
Manuel Pégourié-Gonnard7037e222017-08-23 14:30:36 +02002245 /* almost transfer ownership of T to the group, but keep a copy of
Manuel Pégourié-Gonnardee68cff2018-10-15 15:27:49 +02002246 * the pointer to use for calling the next function more easily */
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002247 grp->T = T;
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02002248 grp->T_size = T_size;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002249 }
2250 }
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002251
Manuel Pégourié-Gonnard391f4412017-03-13 12:26:21 +01002252 /* Actual comb multiplication using precomputed points */
2253 MBEDTLS_MPI_CHK( ecp_mul_comb_after_precomp( grp, R, m,
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02002254 T, T_size, w, d,
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002255 f_rng, p_rng, rs_ctx ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002256
2257cleanup:
2258
Manuel Pégourié-Gonnard07bf6f52017-03-16 17:21:38 +01002259 /* does T belong to the group? */
2260 if( T == grp->T )
2261 T = NULL;
2262
2263 /* does T belong to the restart context? */
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002264#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002265 if( rs_ctx != NULL && rs_ctx->rsm != NULL && ret == MBEDTLS_ERR_ECP_IN_PROGRESS && T != NULL )
Manuel Pégourié-Gonnardc9c0aa62017-03-16 14:53:26 +01002266 {
Manuel Pégourié-Gonnard45fd0162017-03-22 08:24:42 +01002267 /* transfer ownership of T from local function to rsm */
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02002268 rs_ctx->rsm->T_size = T_size;
Manuel Pégourié-Gonnard3cade222017-04-20 09:31:00 +02002269 rs_ctx->rsm->T = T;
Manuel Pégourié-Gonnardc9c0aa62017-03-16 14:53:26 +01002270 T = NULL;
2271 }
2272#endif
2273
Manuel Pégourié-Gonnard07bf6f52017-03-16 17:21:38 +01002274 /* did T belong to us? then let's destroy it! */
2275 if( T != NULL )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002276 {
Manuel Pégourié-Gonnard92cceb22017-08-23 16:27:29 +02002277 for( i = 0; i < T_size; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002278 mbedtls_ecp_point_free( &T[i] );
2279 mbedtls_free( T );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002280 }
2281
Manuel Pégourié-Gonnard07bf6f52017-03-16 17:21:38 +01002282 /* prevent caller from using invalid value */
David Horstmann6e116872022-10-25 10:32:08 +01002283 int should_free_R = ( ret != 0 );
David Horstmannfc735df2022-10-06 19:11:04 +01002284#if defined(MBEDTLS_ECP_RESTARTABLE)
2285 /* don't free R while in progress in case R == P */
David Horstmann6e116872022-10-25 10:32:08 +01002286 if( ret == MBEDTLS_ERR_ECP_IN_PROGRESS )
2287 should_free_R = 0;
David Horstmannfc735df2022-10-06 19:11:04 +01002288#endif
2289 if( should_free_R )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002290 mbedtls_ecp_point_free( R );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002291
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +02002292 ECP_RS_LEAVE( rsm );
Manuel Pégourié-Gonnard77af79a2017-03-14 10:58:00 +01002293
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002294 return( ret );
2295}
2296
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002297#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01002298
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002299#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01002300/*
2301 * For Montgomery curves, we do all the internal arithmetic in projective
2302 * coordinates. Import/export of points uses only the x coordinates, which is
Shaun Case8b0ecbc2021-12-20 21:14:10 -08002303 * internally represented as X / Z.
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01002304 *
2305 * For scalar multiplication, we'll use a Montgomery ladder.
2306 */
2307
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01002308/*
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002309 * Normalize Montgomery x/z coordinates: X = X/Z, Z = 1
2310 * Cost: 1M + 1I
2311 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002312static int ecp_normalize_mxz( const mbedtls_ecp_group *grp, mbedtls_ecp_point *P )
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002313{
Janos Follathb0697532016-08-18 12:38:46 +01002314#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02002315 if( mbedtls_internal_ecp_grp_capable( grp ) )
2316 return( mbedtls_internal_ecp_normalize_mxz( grp, P ) );
Janos Follath372697b2016-10-28 16:53:11 +01002317#endif /* MBEDTLS_ECP_NORMALIZE_MXZ_ALT */
Janos Follathb0697532016-08-18 12:38:46 +01002318
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01002319#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT)
2320 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
2321#else
2322 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Hanno Beckerce29ae82022-01-04 04:55:11 +00002323 MPI_ECP_INV( &P->Z, &P->Z );
2324 MPI_ECP_MUL( &P->X, &P->X, &P->Z );
Hanno Becker595616e2022-01-05 08:28:24 +00002325 MPI_ECP_LSET( &P->Z, 1 );
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002326
2327cleanup:
2328 return( ret );
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01002329#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT) */
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002330}
2331
2332/*
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002333 * Randomize projective x/z coordinates:
2334 * (X, Z) -> (l X, l Z) for random l
2335 * This is sort of the reverse operation of ecp_normalize_mxz().
2336 *
2337 * This countermeasure was first suggested in [2].
2338 * Cost: 2M
2339 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002340static int ecp_randomize_mxz( const mbedtls_ecp_group *grp, mbedtls_ecp_point *P,
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002341 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
2342{
Janos Follathb0697532016-08-18 12:38:46 +01002343#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02002344 if( mbedtls_internal_ecp_grp_capable( grp ) )
Steven Cooremand4bfb3e2021-03-11 13:18:29 +01002345 return( mbedtls_internal_ecp_randomize_mxz( grp, P, f_rng, p_rng ) );
Janos Follath372697b2016-10-28 16:53:11 +01002346#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */
Janos Follathb0697532016-08-18 12:38:46 +01002347
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01002348#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT)
2349 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
2350#else
2351 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
2352 mbedtls_mpi l;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002353 mbedtls_mpi_init( &l );
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002354
2355 /* Generate l such that 1 < l < p */
Hanno Becker595616e2022-01-05 08:28:24 +00002356 MPI_ECP_RAND( &l );
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002357
Hanno Beckerce29ae82022-01-04 04:55:11 +00002358 MPI_ECP_MUL( &P->X, &P->X, &l );
2359 MPI_ECP_MUL( &P->Z, &P->Z, &l );
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002360
2361cleanup:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002362 mbedtls_mpi_free( &l );
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002363
Gilles Peskine59215172021-03-29 22:28:50 +02002364 if( ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE )
2365 ret = MBEDTLS_ERR_ECP_RANDOM_FAILED;
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002366 return( ret );
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01002367#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) */
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002368}
2369
2370/*
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002371 * Double-and-add: R = 2P, S = P + Q, with d = X(P - Q),
2372 * for Montgomery curves in x/z coordinates.
2373 *
2374 * http://www.hyperelliptic.org/EFD/g1p/auto-code/montgom/xz/ladder/mladd-1987-m.op3
2375 * with
2376 * d = X1
2377 * P = (X2, Z2)
2378 * Q = (X3, Z3)
2379 * R = (X4, Z4)
2380 * S = (X5, Z5)
2381 * and eliminating temporary variables tO, ..., t4.
2382 *
2383 * Cost: 5M + 4S
2384 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002385static int ecp_double_add_mxz( const mbedtls_ecp_group *grp,
2386 mbedtls_ecp_point *R, mbedtls_ecp_point *S,
2387 const mbedtls_ecp_point *P, const mbedtls_ecp_point *Q,
Hanno Becker30838862022-01-04 13:25:59 +00002388 const mbedtls_mpi *d,
2389 mbedtls_mpi T[4] )
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002390{
Janos Follathb0697532016-08-18 12:38:46 +01002391#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02002392 if( mbedtls_internal_ecp_grp_capable( grp ) )
2393 return( mbedtls_internal_ecp_double_add_mxz( grp, R, S, P, Q, d ) );
Janos Follath372697b2016-10-28 16:53:11 +01002394#endif /* MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT */
Janos Follathb0697532016-08-18 12:38:46 +01002395
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01002396#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT)
2397 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
2398#else
2399 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01002400
Hanno Beckerac4d4bc2022-01-09 05:58:49 +00002401 MPI_ECP_ADD( &T[0], &P->X, &P->Z ); /* Pp := PX + PZ */
2402 MPI_ECP_SUB( &T[1], &P->X, &P->Z ); /* Pm := PX - PZ */
2403 MPI_ECP_ADD( &T[2], &Q->X, &Q->Z ); /* Qp := QX + XZ */
2404 MPI_ECP_SUB( &T[3], &Q->X, &Q->Z ); /* Qm := QX - QZ */
2405 MPI_ECP_MUL( &T[3], &T[3], &T[0] ); /* Qm * Pp */
2406 MPI_ECP_MUL( &T[2], &T[2], &T[1] ); /* Qp * Pm */
2407 MPI_ECP_SQR( &T[0], &T[0] ); /* Pp^2 */
2408 MPI_ECP_SQR( &T[1], &T[1] ); /* Pm^2 */
2409 MPI_ECP_MUL( &R->X, &T[0], &T[1] ); /* Pp^2 * Pm^2 */
2410 MPI_ECP_SUB( &T[0], &T[0], &T[1] ); /* Pp^2 - Pm^2 */
2411 MPI_ECP_MUL( &R->Z, &grp->A, &T[0] ); /* A * (Pp^2 - Pm^2) */
2412 MPI_ECP_ADD( &R->Z, &T[1], &R->Z ); /* [ A * (Pp^2-Pm^2) ] + Pm^2 */
2413 MPI_ECP_ADD( &S->X, &T[3], &T[2] ); /* Qm*Pp + Qp*Pm */
2414 MPI_ECP_SQR( &S->X, &S->X ); /* (Qm*Pp + Qp*Pm)^2 */
2415 MPI_ECP_SUB( &S->Z, &T[3], &T[2] ); /* Qm*Pp - Qp*Pm */
2416 MPI_ECP_SQR( &S->Z, &S->Z ); /* (Qm*Pp - Qp*Pm)^2 */
2417 MPI_ECP_MUL( &S->Z, d, &S->Z ); /* d * ( Qm*Pp - Qp*Pm )^2 */
2418 MPI_ECP_MUL( &R->Z, &T[0], &R->Z ); /* [A*(Pp^2-Pm^2)+Pm^2]*(Pp^2-Pm^2) */
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002419
2420cleanup:
Hanno Becker28ccb1c2022-01-04 07:15:04 +00002421
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002422 return( ret );
Steven Cooreman7eb2aa02021-01-22 09:43:59 +01002423#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) */
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002424}
2425
2426/*
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01002427 * Multiplication with Montgomery ladder in x/z coordinates,
2428 * for curves in Montgomery form
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002429 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002430static int ecp_mul_mxz( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
2431 const mbedtls_mpi *m, const mbedtls_ecp_point *P,
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01002432 int (*f_rng)(void *, unsigned char *, size_t),
2433 void *p_rng )
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002434{
Janos Follath24eed8d2019-11-22 13:21:35 +00002435 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002436 size_t i;
Manuel Pégourié-Gonnardb6f45a62013-12-04 21:54:36 +01002437 unsigned char b;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002438 mbedtls_ecp_point RP;
2439 mbedtls_mpi PX;
Hanno Becker30838862022-01-04 13:25:59 +00002440 mbedtls_mpi tmp[4];
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002441 mbedtls_ecp_point_init( &RP ); mbedtls_mpi_init( &PX );
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002442
Hanno Becker466df6e2022-01-10 11:16:51 +00002443 mpi_init_many( tmp, sizeof( tmp ) / sizeof( mbedtls_mpi ) );
Hanno Becker30838862022-01-04 13:25:59 +00002444
Manuel Pégourié-Gonnard02b57052021-06-15 11:29:26 +02002445 if( f_rng == NULL )
2446 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
2447
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002448 /* Save PX and read from P before writing to R, in case P == R */
Hanno Becker595616e2022-01-05 08:28:24 +00002449 MPI_ECP_MOV( &PX, &P->X );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002450 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( &RP, P ) );
Manuel Pégourié-Gonnard357ff652013-12-04 18:39:17 +01002451
2452 /* Set R to zero in modified x/z coordinates */
Hanno Becker595616e2022-01-05 08:28:24 +00002453 MPI_ECP_LSET( &R->X, 1 );
2454 MPI_ECP_LSET( &R->Z, 0 );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002455 mbedtls_mpi_free( &R->Y );
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002456
Shaun Case8b0ecbc2021-12-20 21:14:10 -08002457 /* RP.X might be slightly larger than P, so reduce it */
Hanno Beckerce29ae82022-01-04 04:55:11 +00002458 MOD_ADD( &RP.X );
Manuel Pégourié-Gonnard93f41db2013-12-05 10:48:42 +01002459
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01002460 /* Randomize coordinates of the starting point */
Manuel Pégourié-Gonnard02b57052021-06-15 11:29:26 +02002461 MBEDTLS_MPI_CHK( ecp_randomize_mxz( grp, &RP, f_rng, p_rng ) );
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002462
Manuel Pégourié-Gonnardb6f45a62013-12-04 21:54:36 +01002463 /* Loop invariant: R = result so far, RP = R + P */
Aurelien Jarnoc79ce882022-05-15 13:24:05 +02002464 i = grp->nbits + 1; /* one past the (zero-based) required msb for private keys */
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002465 while( i-- > 0 )
2466 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002467 b = mbedtls_mpi_get_bit( m, i );
Manuel Pégourié-Gonnardb6f45a62013-12-04 21:54:36 +01002468 /*
2469 * if (b) R = 2R + P else R = 2R,
2470 * which is:
2471 * if (b) double_add( RP, R, RP, R )
2472 * else double_add( R, RP, R, RP )
2473 * but using safe conditional swaps to avoid leaks
2474 */
Hanno Beckerc27a0e02022-01-06 05:56:34 +00002475 MPI_ECP_COND_SWAP( &R->X, &RP.X, b );
2476 MPI_ECP_COND_SWAP( &R->Z, &RP.Z, b );
Hanno Becker30838862022-01-04 13:25:59 +00002477 MBEDTLS_MPI_CHK( ecp_double_add_mxz( grp, R, &RP, R, &RP, &PX, tmp ) );
Hanno Beckerc27a0e02022-01-06 05:56:34 +00002478 MPI_ECP_COND_SWAP( &R->X, &RP.X, b );
2479 MPI_ECP_COND_SWAP( &R->Z, &RP.Z, b );
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002480 }
2481
Manuel Pégourié-Gonnarda4aa89b2020-03-25 12:41:29 +01002482 /*
2483 * Knowledge of the projective coordinates may leak the last few bits of the
2484 * scalar [1], and since our MPI implementation isn't constant-flow,
2485 * inversion (used for coordinate normalization) may leak the full value
2486 * of its input via side-channels [2].
2487 *
2488 * [1] https://eprint.iacr.org/2003/191
2489 * [2] https://eprint.iacr.org/2020/055
2490 *
2491 * Avoid the leak by randomizing coordinates before we normalize them.
2492 */
Manuel Pégourié-Gonnard02b57052021-06-15 11:29:26 +02002493 MBEDTLS_MPI_CHK( ecp_randomize_mxz( grp, R, f_rng, p_rng ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002494 MBEDTLS_MPI_CHK( ecp_normalize_mxz( grp, R ) );
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002495
2496cleanup:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002497 mbedtls_ecp_point_free( &RP ); mbedtls_mpi_free( &PX );
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002498
Hanno Becker466df6e2022-01-10 11:16:51 +00002499 mpi_free_many( tmp, sizeof( tmp ) / sizeof( mbedtls_mpi ) );
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002500 return( ret );
2501}
2502
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002503#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01002504
Manuel Pégourié-Gonnardd9ea82e72013-12-03 12:02:28 +01002505/*
Manuel Pégourié-Gonnard884569c2017-04-20 10:10:59 +02002506 * Restartable multiplication R = m * P
Manuel Pégourié-Gonnard75525ae2021-06-15 11:29:26 +02002507 *
2508 * This internal function can be called without an RNG in case where we know
2509 * the inputs are not sensitive.
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01002510 */
Manuel Pégourié-Gonnard75525ae2021-06-15 11:29:26 +02002511static int ecp_mul_restartable_internal( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002512 const mbedtls_mpi *m, const mbedtls_ecp_point *P,
Manuel Pégourié-Gonnard884569c2017-04-20 10:10:59 +02002513 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
2514 mbedtls_ecp_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01002515{
Janos Follathb0697532016-08-18 12:38:46 +01002516 int ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
Janos Follathc44ab972016-11-18 16:38:23 +00002517#if defined(MBEDTLS_ECP_INTERNAL_ALT)
2518 char is_grp_capable = 0;
2519#endif
Manuel Pégourié-Gonnardaa3ed6f2021-06-15 11:29:26 +02002520
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002521#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002522 /* reset ops count for this call if top-level */
2523 if( rs_ctx != NULL && rs_ctx->depth++ == 0 )
2524 rs_ctx->ops_done = 0;
Gilles Peskine59970052019-02-28 13:12:06 +01002525#else
2526 (void) rs_ctx;
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002527#endif
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01002528
Janos Follathc44ab972016-11-18 16:38:23 +00002529#if defined(MBEDTLS_ECP_INTERNAL_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02002530 if( ( is_grp_capable = mbedtls_internal_ecp_grp_capable( grp ) ) )
Janos Follathc44ab972016-11-18 16:38:23 +00002531 MBEDTLS_MPI_CHK( mbedtls_internal_ecp_init( grp ) );
Janos Follathc44ab972016-11-18 16:38:23 +00002532#endif /* MBEDTLS_ECP_INTERNAL_ALT */
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002533
David Horstmannfc735df2022-10-06 19:11:04 +01002534 int restarting = 0;
Manuel Pégourié-Gonnard95aedfe2017-08-24 13:47:04 +02002535#if defined(MBEDTLS_ECP_RESTARTABLE)
David Horstmannfc735df2022-10-06 19:11:04 +01002536 restarting = ( rs_ctx != NULL && rs_ctx->rsm != NULL );
Manuel Pégourié-Gonnarda08cd1a2017-04-20 11:29:43 +02002537#endif
David Horstmannfc735df2022-10-06 19:11:04 +01002538 /* skip argument check when restarting */
2539 if( !restarting )
Manuel Pégourié-Gonnarda08cd1a2017-04-20 11:29:43 +02002540 {
Manuel Pégourié-Gonnard5314f232017-04-21 12:36:59 +02002541 /* check_privkey is free */
2542 MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_CHK );
2543
Manuel Pégourié-Gonnarda08cd1a2017-04-20 11:29:43 +02002544 /* Common sanity checks */
2545 MBEDTLS_MPI_CHK( mbedtls_ecp_check_privkey( grp, m ) );
2546 MBEDTLS_MPI_CHK( mbedtls_ecp_check_pubkey( grp, P ) );
Manuel Pégourié-Gonnarda08cd1a2017-04-20 11:29:43 +02002547 }
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002548
2549 ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002550#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00002551 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002552 MBEDTLS_MPI_CHK( ecp_mul_mxz( grp, R, m, P, f_rng, p_rng ) );
Janos Follath430d3372016-11-03 14:25:37 +00002553#endif
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002554#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00002555 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002556 MBEDTLS_MPI_CHK( ecp_mul_comb( grp, R, m, P, f_rng, p_rng, rs_ctx ) );
Janos Follath430d3372016-11-03 14:25:37 +00002557#endif
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002558
Janos Follath6c8ccd52016-11-29 15:37:09 +00002559cleanup:
Janos Follathb0697532016-08-18 12:38:46 +01002560
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002561#if defined(MBEDTLS_ECP_INTERNAL_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02002562 if( is_grp_capable )
Janos Follathc44ab972016-11-18 16:38:23 +00002563 mbedtls_internal_ecp_free( grp );
Janos Follathc44ab972016-11-18 16:38:23 +00002564#endif /* MBEDTLS_ECP_INTERNAL_ALT */
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002565
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002566#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard3a256122017-04-20 11:20:26 +02002567 if( rs_ctx != NULL )
2568 rs_ctx->depth--;
2569#endif
2570
Janos Follathb0697532016-08-18 12:38:46 +01002571 return( ret );
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01002572}
2573
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +02002574/*
Manuel Pégourié-Gonnard75525ae2021-06-15 11:29:26 +02002575 * Restartable multiplication R = m * P
2576 */
2577int mbedtls_ecp_mul_restartable( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
2578 const mbedtls_mpi *m, const mbedtls_ecp_point *P,
2579 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
2580 mbedtls_ecp_restart_ctx *rs_ctx )
2581{
Manuel Pégourié-Gonnard75525ae2021-06-15 11:29:26 +02002582 if( f_rng == NULL )
2583 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
2584
2585 return( ecp_mul_restartable_internal( grp, R, m, P, f_rng, p_rng, rs_ctx ) );
2586}
2587
2588/*
Manuel Pégourié-Gonnard884569c2017-04-20 10:10:59 +02002589 * Multiplication R = m * P
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +02002590 */
Manuel Pégourié-Gonnard884569c2017-04-20 10:10:59 +02002591int mbedtls_ecp_mul( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +02002592 const mbedtls_mpi *m, const mbedtls_ecp_point *P,
Manuel Pégourié-Gonnard884569c2017-04-20 10:10:59 +02002593 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +02002594{
Manuel Pégourié-Gonnard884569c2017-04-20 10:10:59 +02002595 return( mbedtls_ecp_mul_restartable( grp, R, m, P, f_rng, p_rng, NULL ) );
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +02002596}
Manuel Pégourié-Gonnardb739a712017-04-19 10:11:56 +02002597
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002598#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01002599/*
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002600 * Check that an affine point is valid as a public key,
2601 * short weierstrass curves (SEC1 3.2.3.1)
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002602 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002603static int ecp_check_pubkey_sw( const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt )
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002604{
Janos Follath24eed8d2019-11-22 13:21:35 +00002605 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002606 mbedtls_mpi YY, RHS;
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002607
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01002608 /* pt coordinates must be normalized for our checks */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002609 if( mbedtls_mpi_cmp_int( &pt->X, 0 ) < 0 ||
2610 mbedtls_mpi_cmp_int( &pt->Y, 0 ) < 0 ||
2611 mbedtls_mpi_cmp_mpi( &pt->X, &grp->P ) >= 0 ||
2612 mbedtls_mpi_cmp_mpi( &pt->Y, &grp->P ) >= 0 )
2613 return( MBEDTLS_ERR_ECP_INVALID_KEY );
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002614
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002615 mbedtls_mpi_init( &YY ); mbedtls_mpi_init( &RHS );
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002616
2617 /*
2618 * YY = Y^2
Manuel Pégourié-Gonnardcd7458a2013-10-08 13:11:30 +02002619 * RHS = X (X^2 + A) + B = X^3 + A X + B
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002620 */
Hanno Becker885ed402022-01-04 06:43:50 +00002621 MPI_ECP_SQR( &YY, &pt->Y );
2622 MPI_ECP_SQR( &RHS, &pt->X );
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +01002623
2624 /* Special case for A = -3 */
2625 if( grp->A.p == NULL )
2626 {
Hanno Beckerce29ae82022-01-04 04:55:11 +00002627 MPI_ECP_SUB_INT( &RHS, &RHS, 3 );
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +01002628 }
2629 else
2630 {
Hanno Beckerce29ae82022-01-04 04:55:11 +00002631 MPI_ECP_ADD( &RHS, &RHS, &grp->A );
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +01002632 }
2633
Hanno Beckerce29ae82022-01-04 04:55:11 +00002634 MPI_ECP_MUL( &RHS, &RHS, &pt->X );
2635 MPI_ECP_ADD( &RHS, &RHS, &grp->B );
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002636
Hanno Becker595616e2022-01-05 08:28:24 +00002637 if( MPI_ECP_CMP( &YY, &RHS ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002638 ret = MBEDTLS_ERR_ECP_INVALID_KEY;
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002639
2640cleanup:
2641
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002642 mbedtls_mpi_free( &YY ); mbedtls_mpi_free( &RHS );
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002643
2644 return( ret );
2645}
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002646#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002647
Gilles Peskine9b99a892018-09-14 18:32:19 +02002648#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002649/*
TRodziewicz9edff742021-03-04 17:59:39 +01002650 * R = m * P with shortcuts for m == 0, m == 1 and m == -1
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002651 * NOT constant-time - ONLY for short Weierstrass!
2652 */
2653static int mbedtls_ecp_mul_shortcuts( mbedtls_ecp_group *grp,
2654 mbedtls_ecp_point *R,
2655 const mbedtls_mpi *m,
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002656 const mbedtls_ecp_point *P,
2657 mbedtls_ecp_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002658{
Janos Follath24eed8d2019-11-22 13:21:35 +00002659 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Hanno Beckerc27a0e02022-01-06 05:56:34 +00002660 mbedtls_mpi tmp;
2661 mbedtls_mpi_init( &tmp );
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002662
TRodziewicz782a7ea2021-03-17 11:35:16 +01002663 if( mbedtls_mpi_cmp_int( m, 0 ) == 0 )
TRodziewicz9edff742021-03-04 17:59:39 +01002664 {
Dave Rodgmanc9477512022-08-10 11:26:24 +01002665 MBEDTLS_MPI_CHK( mbedtls_ecp_check_pubkey( grp, P ) );
TRodziewicz9edff742021-03-04 17:59:39 +01002666 MBEDTLS_MPI_CHK( mbedtls_ecp_set_zero( R ) );
2667 }
2668 else if( mbedtls_mpi_cmp_int( m, 1 ) == 0 )
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002669 {
Dave Rodgmanc9477512022-08-10 11:26:24 +01002670 MBEDTLS_MPI_CHK( mbedtls_ecp_check_pubkey( grp, P ) );
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002671 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, P ) );
2672 }
2673 else if( mbedtls_mpi_cmp_int( m, -1 ) == 0 )
2674 {
Dave Rodgmanc9477512022-08-10 11:26:24 +01002675 MBEDTLS_MPI_CHK( mbedtls_ecp_check_pubkey( grp, P ) );
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002676 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, P ) );
Hanno Beckerc27a0e02022-01-06 05:56:34 +00002677 MPI_ECP_NEG( &R->Y );
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002678 }
2679 else
2680 {
Manuel Pégourié-Gonnard75525ae2021-06-15 11:29:26 +02002681 MBEDTLS_MPI_CHK( ecp_mul_restartable_internal( grp, R, m, P,
2682 NULL, NULL, rs_ctx ) );
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002683 }
2684
2685cleanup:
Hanno Beckerc27a0e02022-01-06 05:56:34 +00002686 mbedtls_mpi_free( &tmp );
2687
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002688 return( ret );
2689}
2690
2691/*
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +02002692 * Restartable linear combination
Manuel Pégourié-Gonnardde9f9532015-10-23 15:50:37 +02002693 * NOT constant-time
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002694 */
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +02002695int mbedtls_ecp_muladd_restartable(
2696 mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002697 const mbedtls_mpi *m, const mbedtls_ecp_point *P,
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +02002698 const mbedtls_mpi *n, const mbedtls_ecp_point *Q,
2699 mbedtls_ecp_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002700{
Janos Follath24eed8d2019-11-22 13:21:35 +00002701 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002702 mbedtls_ecp_point mP;
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002703 mbedtls_ecp_point *pmP = &mP;
2704 mbedtls_ecp_point *pR = R;
Hanno Becker3b29f212022-01-04 07:34:14 +00002705 mbedtls_mpi tmp[4];
Janos Follathc44ab972016-11-18 16:38:23 +00002706#if defined(MBEDTLS_ECP_INTERNAL_ALT)
2707 char is_grp_capable = 0;
2708#endif
Janos Follathdf9295b2019-02-26 12:36:52 +00002709 if( mbedtls_ecp_get_type( grp ) != MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002710 return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
2711
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002712 mbedtls_ecp_point_init( &mP );
Hanno Becker466df6e2022-01-10 11:16:51 +00002713 mpi_init_many( tmp, sizeof( tmp ) / sizeof( mbedtls_mpi ) );
Hanno Becker3b29f212022-01-04 07:34:14 +00002714
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +02002715 ECP_RS_ENTER( ma );
2716
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002717#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002718 if( rs_ctx != NULL && rs_ctx->ma != NULL )
2719 {
2720 /* redirect intermediate results to restart context */
2721 pmP = &rs_ctx->ma->mP;
2722 pR = &rs_ctx->ma->R;
2723
2724 /* jump to next operation */
2725 if( rs_ctx->ma->state == ecp_rsma_mul2 )
2726 goto mul2;
2727 if( rs_ctx->ma->state == ecp_rsma_add )
2728 goto add;
2729 if( rs_ctx->ma->state == ecp_rsma_norm )
2730 goto norm;
2731 }
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002732#endif /* MBEDTLS_ECP_RESTARTABLE */
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +02002733
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002734 MBEDTLS_MPI_CHK( mbedtls_ecp_mul_shortcuts( grp, pmP, m, P, rs_ctx ) );
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002735#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002736 if( rs_ctx != NULL && rs_ctx->ma != NULL )
Manuel Pégourié-Gonnardc9efa002017-08-24 10:25:06 +02002737 rs_ctx->ma->state = ecp_rsma_mul2;
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002738
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002739mul2:
2740#endif
2741 MBEDTLS_MPI_CHK( mbedtls_ecp_mul_shortcuts( grp, pR, n, Q, rs_ctx ) );
Andrzej Kurekc470b6b2019-01-31 08:20:20 -05002742
2743#if defined(MBEDTLS_ECP_INTERNAL_ALT)
2744 if( ( is_grp_capable = mbedtls_internal_ecp_grp_capable( grp ) ) )
2745 MBEDTLS_MPI_CHK( mbedtls_internal_ecp_init( grp ) );
2746#endif /* MBEDTLS_ECP_INTERNAL_ALT */
2747
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002748#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002749 if( rs_ctx != NULL && rs_ctx->ma != NULL )
Manuel Pégourié-Gonnardc9efa002017-08-24 10:25:06 +02002750 rs_ctx->ma->state = ecp_rsma_add;
Manuel Pégourié-Gonnard1a7c5ef2015-08-13 10:19:09 +02002751
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002752add:
2753#endif
Manuel Pégourié-Gonnardc7511482017-04-20 16:31:00 +02002754 MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_ADD );
Hanno Becker3b29f212022-01-04 07:34:14 +00002755 MBEDTLS_MPI_CHK( ecp_add_mixed( grp, pR, pmP, pR, tmp ) );
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002756#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002757 if( rs_ctx != NULL && rs_ctx->ma != NULL )
Manuel Pégourié-Gonnardc9efa002017-08-24 10:25:06 +02002758 rs_ctx->ma->state = ecp_rsma_norm;
Janos Follath430d3372016-11-03 14:25:37 +00002759
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002760norm:
2761#endif
Manuel Pégourié-Gonnardc7511482017-04-20 16:31:00 +02002762 MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_INV );
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002763 MBEDTLS_MPI_CHK( ecp_normalize_jac( grp, pR ) );
2764
Manuel Pégourié-Gonnard4b9c51e2017-04-20 15:50:26 +02002765#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002766 if( rs_ctx != NULL && rs_ctx->ma != NULL )
2767 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, pR ) );
2768#endif
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002769
2770cleanup:
Hanno Becker3b29f212022-01-04 07:34:14 +00002771
Hanno Becker466df6e2022-01-10 11:16:51 +00002772 mpi_free_many( tmp, sizeof( tmp ) / sizeof( mbedtls_mpi ) );
Hanno Becker3b29f212022-01-04 07:34:14 +00002773
Janos Follathc44ab972016-11-18 16:38:23 +00002774#if defined(MBEDTLS_ECP_INTERNAL_ALT)
Manuel Pégourié-Gonnardebac5d32017-08-23 16:23:36 +02002775 if( is_grp_capable )
Janos Follathc44ab972016-11-18 16:38:23 +00002776 mbedtls_internal_ecp_free( grp );
Janos Follathc44ab972016-11-18 16:38:23 +00002777#endif /* MBEDTLS_ECP_INTERNAL_ALT */
Manuel Pégourié-Gonnard1631d632017-04-20 14:48:56 +02002778
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002779 mbedtls_ecp_point_free( &mP );
2780
Manuel Pégourié-Gonnarddb4a8eb2017-08-23 18:18:22 +02002781 ECP_RS_LEAVE( ma );
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +02002782
Manuel Pégourié-Gonnard56cc88a2015-05-11 18:40:45 +02002783 return( ret );
2784}
2785
Manuel Pégourié-Gonnard54dd6522017-04-20 13:36:18 +02002786/*
2787 * Linear combination
2788 * NOT constant-time
2789 */
2790int mbedtls_ecp_muladd( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
2791 const mbedtls_mpi *m, const mbedtls_ecp_point *P,
2792 const mbedtls_mpi *n, const mbedtls_ecp_point *Q )
2793{
2794 return( mbedtls_ecp_muladd_restartable( grp, R, m, P, n, Q, NULL ) );
2795}
Gilles Peskine9b99a892018-09-14 18:32:19 +02002796#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002797
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002798#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002799#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
Manuel Pégourié-Gonnard06215ea2021-06-23 12:53:18 +02002800#define ECP_MPI_INIT(s, n, p) {s, (n), (mbedtls_mpi_uint *)(p)}
2801#define ECP_MPI_INIT_ARRAY(x) \
2802 ECP_MPI_INIT(1, sizeof(x) / sizeof(mbedtls_mpi_uint), x)
2803/*
2804 * Constants for the two points other than 0, 1, -1 (mod p) in
2805 * https://cr.yp.to/ecdh.html#validate
2806 * See ecp_check_pubkey_x25519().
2807 */
2808static const mbedtls_mpi_uint x25519_bad_point_1[] = {
Janos Follath1107ee42021-06-25 12:43:26 +01002809 MBEDTLS_BYTES_TO_T_UINT_8( 0xe0, 0xeb, 0x7a, 0x7c, 0x3b, 0x41, 0xb8, 0xae ),
2810 MBEDTLS_BYTES_TO_T_UINT_8( 0x16, 0x56, 0xe3, 0xfa, 0xf1, 0x9f, 0xc4, 0x6a ),
2811 MBEDTLS_BYTES_TO_T_UINT_8( 0xda, 0x09, 0x8d, 0xeb, 0x9c, 0x32, 0xb1, 0xfd ),
2812 MBEDTLS_BYTES_TO_T_UINT_8( 0x86, 0x62, 0x05, 0x16, 0x5f, 0x49, 0xb8, 0x00 ),
Manuel Pégourié-Gonnard06215ea2021-06-23 12:53:18 +02002813};
2814static const mbedtls_mpi_uint x25519_bad_point_2[] = {
Janos Follath1107ee42021-06-25 12:43:26 +01002815 MBEDTLS_BYTES_TO_T_UINT_8( 0x5f, 0x9c, 0x95, 0xbc, 0xa3, 0x50, 0x8c, 0x24 ),
2816 MBEDTLS_BYTES_TO_T_UINT_8( 0xb1, 0xd0, 0xb1, 0x55, 0x9c, 0x83, 0xef, 0x5b ),
2817 MBEDTLS_BYTES_TO_T_UINT_8( 0x04, 0x44, 0x5c, 0xc4, 0x58, 0x1c, 0x8e, 0x86 ),
2818 MBEDTLS_BYTES_TO_T_UINT_8( 0xd8, 0x22, 0x4e, 0xdd, 0xd0, 0x9f, 0x11, 0x57 ),
Manuel Pégourié-Gonnard06215ea2021-06-23 12:53:18 +02002819};
2820static const mbedtls_mpi ecp_x25519_bad_point_1 = ECP_MPI_INIT_ARRAY(
2821 x25519_bad_point_1 );
2822static const mbedtls_mpi ecp_x25519_bad_point_2 = ECP_MPI_INIT_ARRAY(
2823 x25519_bad_point_2 );
Janos Follath865a75e2021-06-24 15:34:59 +01002824#endif /* MBEDTLS_ECP_DP_CURVE25519_ENABLED */
Manuel Pégourié-Gonnard2389a602021-06-23 12:25:48 +02002825
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002826/*
2827 * Check that the input point is not one of the low-order points.
2828 * This is recommended by the "May the Fourth" paper:
2829 * https://eprint.iacr.org/2017/806.pdf
2830 * Those points are never sent by an honest peer.
2831 */
Janos Follath865a75e2021-06-24 15:34:59 +01002832static int ecp_check_bad_points_mx( const mbedtls_mpi *X, const mbedtls_mpi *P,
2833 const mbedtls_ecp_group_id grp_id )
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002834{
2835 int ret;
Manuel Pégourié-Gonnard2389a602021-06-23 12:25:48 +02002836 mbedtls_mpi XmP;
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002837
2838 mbedtls_mpi_init( &XmP );
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002839
2840 /* Reduce X mod P so that we only need to check values less than P.
2841 * We know X < 2^256 so we can proceed by subtraction. */
2842 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &XmP, X ) );
2843 while( mbedtls_mpi_cmp_mpi( &XmP, P ) >= 0 )
2844 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &XmP, &XmP, P ) );
2845
Janos Follath865a75e2021-06-24 15:34:59 +01002846 /* Check against the known bad values that are less than P. For Curve448
2847 * these are 0, 1 and -1. For Curve25519 we check the values less than P
2848 * from the following list: https://cr.yp.to/ecdh.html#validate */
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002849 if( mbedtls_mpi_cmp_int( &XmP, 1 ) <= 0 ) /* takes care of 0 and 1 */
Janos Follath8081ced2021-06-24 14:24:13 +01002850 {
2851 ret = MBEDTLS_ERR_ECP_INVALID_KEY;
2852 goto cleanup;
2853 }
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002854
Janos Follath865a75e2021-06-24 15:34:59 +01002855#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
2856 if( grp_id == MBEDTLS_ECP_DP_CURVE25519 )
Janos Follath8081ced2021-06-24 14:24:13 +01002857 {
Janos Follath865a75e2021-06-24 15:34:59 +01002858 if( mbedtls_mpi_cmp_mpi( &XmP, &ecp_x25519_bad_point_1 ) == 0 )
2859 {
2860 ret = MBEDTLS_ERR_ECP_INVALID_KEY;
2861 goto cleanup;
2862 }
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002863
Janos Follath865a75e2021-06-24 15:34:59 +01002864 if( mbedtls_mpi_cmp_mpi( &XmP, &ecp_x25519_bad_point_2 ) == 0 )
2865 {
2866 ret = MBEDTLS_ERR_ECP_INVALID_KEY;
2867 goto cleanup;
2868 }
Janos Follath8081ced2021-06-24 14:24:13 +01002869 }
Janos Follath83e384d2021-06-25 15:29:56 +01002870#else
2871 (void) grp_id;
Janos Follath865a75e2021-06-24 15:34:59 +01002872#endif
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002873
Manuel Pégourié-Gonnard2389a602021-06-23 12:25:48 +02002874 /* Final check: check if XmP + 1 is P (final because it changes XmP!) */
2875 MBEDTLS_MPI_CHK( mbedtls_mpi_add_int( &XmP, &XmP, 1 ) );
2876 if( mbedtls_mpi_cmp_mpi( &XmP, P ) == 0 )
Janos Follath8081ced2021-06-24 14:24:13 +01002877 {
2878 ret = MBEDTLS_ERR_ECP_INVALID_KEY;
2879 goto cleanup;
2880 }
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002881
2882 ret = 0;
2883
2884cleanup:
2885 mbedtls_mpi_free( &XmP );
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002886
2887 return( ret );
2888}
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002889
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002890/*
2891 * Check validity of a public key for Montgomery curves with x-only schemes
2892 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002893static int ecp_check_pubkey_mx( const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt )
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002894{
Manuel Pégourié-Gonnard07894332015-06-23 00:18:41 +02002895 /* [Curve25519 p. 5] Just check X is the correct number of bytes */
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00002896 /* Allow any public value, if it's too big then we'll just reduce it mod p
2897 * (RFC 7748 sec. 5 para. 3). */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002898 if( mbedtls_mpi_size( &pt->X ) > ( grp->nbits + 7 ) / 8 )
2899 return( MBEDTLS_ERR_ECP_INVALID_KEY );
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002900
Manuel Pégourié-Gonnardf29857c2021-06-23 10:14:58 +02002901 /* Implicit in all standards (as they don't consider negative numbers):
2902 * X must be non-negative. This is normally ensured by the way it's
2903 * encoded for transmission, but let's be extra sure. */
2904 if( mbedtls_mpi_cmp_int( &pt->X, 0 ) < 0 )
2905 return( MBEDTLS_ERR_ECP_INVALID_KEY );
2906
Janos Follath865a75e2021-06-24 15:34:59 +01002907 return( ecp_check_bad_points_mx( &pt->X, &grp->P, grp->id ) );
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002908}
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002909#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002910
2911/*
2912 * Check that a point is valid as a public key
2913 */
Andrzej Kurekc470b6b2019-01-31 08:20:20 -05002914int mbedtls_ecp_check_pubkey( const mbedtls_ecp_group *grp,
2915 const mbedtls_ecp_point *pt )
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002916{
2917 /* Must use affine coordinates */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002918 if( mbedtls_mpi_cmp_int( &pt->Z, 1 ) != 0 )
2919 return( MBEDTLS_ERR_ECP_INVALID_KEY );
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002920
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002921#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00002922 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002923 return( ecp_check_pubkey_mx( grp, pt ) );
2924#endif
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002925#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00002926 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002927 return( ecp_check_pubkey_sw( grp, pt ) );
2928#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002929 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002930}
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002931
2932/*
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002933 * Check that an mbedtls_mpi is valid as a private key
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002934 */
Andrzej Kurekc470b6b2019-01-31 08:20:20 -05002935int mbedtls_ecp_check_privkey( const mbedtls_ecp_group *grp,
2936 const mbedtls_mpi *d )
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002937{
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002938#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00002939 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01002940 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00002941 /* see RFC 7748 sec. 5 para. 5 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002942 if( mbedtls_mpi_get_bit( d, 0 ) != 0 ||
2943 mbedtls_mpi_get_bit( d, 1 ) != 0 ||
Manuel Pégourié-Gonnardc0696c22015-06-18 16:47:17 +02002944 mbedtls_mpi_bitlen( d ) - 1 != grp->nbits ) /* mbedtls_mpi_bitlen is one-based! */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002945 return( MBEDTLS_ERR_ECP_INVALID_KEY );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00002946
2947 /* see [Curve25519] page 5 */
2948 if( grp->nbits == 254 && mbedtls_mpi_get_bit( d, 2 ) != 0 )
2949 return( MBEDTLS_ERR_ECP_INVALID_KEY );
2950
2951 return( 0 );
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01002952 }
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002953#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
2954#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00002955 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01002956 {
2957 /* see SEC1 3.2 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002958 if( mbedtls_mpi_cmp_int( d, 1 ) < 0 ||
2959 mbedtls_mpi_cmp_mpi( d, &grp->N ) >= 0 )
2960 return( MBEDTLS_ERR_ECP_INVALID_KEY );
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01002961 else
2962 return( 0 );
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01002963 }
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02002964#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002965
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002966 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02002967}
2968
Gilles Peskine72fcc982021-03-23 22:31:31 +01002969#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
2970MBEDTLS_STATIC_TESTABLE
Gilles Peskine55c46042021-03-24 12:34:40 +01002971int mbedtls_ecp_gen_privkey_mx( size_t high_bit,
Gilles Peskine72fcc982021-03-23 22:31:31 +01002972 mbedtls_mpi *d,
2973 int (*f_rng)(void *, unsigned char *, size_t),
2974 void *p_rng )
2975{
2976 int ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
Gilles Peskine61f1f5f2021-03-24 12:46:46 +01002977 size_t n_random_bytes = high_bit / 8 + 1;
Gilles Peskine72fcc982021-03-23 22:31:31 +01002978
2979 /* [Curve25519] page 5 */
Gilles Peskine61f1f5f2021-03-24 12:46:46 +01002980 /* Generate a (high_bit+1)-bit random number by generating just enough
2981 * random bytes, then shifting out extra bits from the top (necessary
2982 * when (high_bit+1) is not a multiple of 8). */
2983 MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( d, n_random_bytes,
2984 f_rng, p_rng ) );
2985 MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( d, 8 * n_random_bytes - high_bit - 1 ) );
Gilles Peskine72fcc982021-03-23 22:31:31 +01002986
Gilles Peskine67986d02021-03-24 12:25:59 +01002987 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( d, high_bit, 1 ) );
Gilles Peskine72fcc982021-03-23 22:31:31 +01002988
2989 /* Make sure the last two bits are unset for Curve448, three bits for
2990 Curve25519 */
2991 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( d, 0, 0 ) );
2992 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( d, 1, 0 ) );
Gilles Peskine55c46042021-03-24 12:34:40 +01002993 if( high_bit == 254 )
Gilles Peskine72fcc982021-03-23 22:31:31 +01002994 {
2995 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( d, 2, 0 ) );
2996 }
2997
2998cleanup:
2999 return( ret );
3000}
3001#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
3002
Gilles Peskine60d8b982021-03-29 22:28:21 +02003003#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
3004static int mbedtls_ecp_gen_privkey_sw(
3005 const mbedtls_mpi *N, mbedtls_mpi *d,
3006 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
3007{
3008 int ret = mbedtls_mpi_random( d, 1, N, f_rng, p_rng );
3009 switch( ret )
3010 {
3011 case MBEDTLS_ERR_MPI_NOT_ACCEPTABLE:
3012 return( MBEDTLS_ERR_ECP_RANDOM_FAILED );
3013 default:
3014 return( ret );
3015 }
3016}
3017#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
3018
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02003019/*
Manuel Pégourié-Gonnarda7937f92017-04-20 15:37:46 +02003020 * Generate a private key
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01003021 */
Manuel Pégourié-Gonnarda7937f92017-04-20 15:37:46 +02003022int mbedtls_ecp_gen_privkey( const mbedtls_ecp_group *grp,
3023 mbedtls_mpi *d,
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01003024 int (*f_rng)(void *, unsigned char *, size_t),
3025 void *p_rng )
3026{
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02003027#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00003028 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
Gilles Peskine72fcc982021-03-23 22:31:31 +01003029 return( mbedtls_ecp_gen_privkey_mx( grp->nbits, d, f_rng, p_rng ) );
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02003030#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
Manuel Pégourié-Gonnarda7937f92017-04-20 15:37:46 +02003031
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02003032#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00003033 if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
Gilles Peskine60d8b982021-03-29 22:28:21 +02003034 return( mbedtls_ecp_gen_privkey_sw( &grp->N, d, f_rng, p_rng ) );
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02003035#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01003036
Gilles Peskine72fcc982021-03-23 22:31:31 +01003037 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnarda7937f92017-04-20 15:37:46 +02003038}
Manuel Pégourié-Gonnardc9573992014-01-03 12:54:00 +01003039
Manuel Pégourié-Gonnarda7937f92017-04-20 15:37:46 +02003040/*
3041 * Generate a keypair with configurable base point
3042 */
3043int mbedtls_ecp_gen_keypair_base( mbedtls_ecp_group *grp,
3044 const mbedtls_ecp_point *G,
3045 mbedtls_mpi *d, mbedtls_ecp_point *Q,
3046 int (*f_rng)(void *, unsigned char *, size_t),
3047 void *p_rng )
3048{
Janos Follath24eed8d2019-11-22 13:21:35 +00003049 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnarda7937f92017-04-20 15:37:46 +02003050 MBEDTLS_MPI_CHK( mbedtls_ecp_gen_privkey( grp, d, f_rng, p_rng ) );
3051 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( grp, Q, d, G, f_rng, p_rng ) );
3052
3053cleanup:
3054 return( ret );
Manuel Pégourié-Gonnardd9a3f472015-08-11 14:31:03 +02003055}
3056
3057/*
3058 * Generate key pair, wrapper for conventional base point
3059 */
3060int mbedtls_ecp_gen_keypair( mbedtls_ecp_group *grp,
3061 mbedtls_mpi *d, mbedtls_ecp_point *Q,
3062 int (*f_rng)(void *, unsigned char *, size_t),
3063 void *p_rng )
3064{
3065 return( mbedtls_ecp_gen_keypair_base( grp, &grp->G, d, Q, f_rng, p_rng ) );
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01003066}
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01003067
Manuel Pégourié-Gonnard104ee1d2013-11-30 14:13:16 +01003068/*
3069 * Generate a keypair, prettier wrapper
3070 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003071int mbedtls_ecp_gen_key( mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair *key,
Manuel Pégourié-Gonnard104ee1d2013-11-30 14:13:16 +01003072 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
3073{
Janos Follath24eed8d2019-11-22 13:21:35 +00003074 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnarde3a062b2015-05-11 18:46:47 +02003075 if( ( ret = mbedtls_ecp_group_load( &key->grp, grp_id ) ) != 0 )
Manuel Pégourié-Gonnard104ee1d2013-11-30 14:13:16 +01003076 return( ret );
3077
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003078 return( mbedtls_ecp_gen_keypair( &key->grp, &key->d, &key->Q, f_rng, p_rng ) );
Manuel Pégourié-Gonnard104ee1d2013-11-30 14:13:16 +01003079}
3080
Janos Follath77800962019-02-25 16:32:08 +00003081#define ECP_CURVE25519_KEY_SIZE 32
Archana1d2e2bb2021-06-07 06:13:16 +05303082#define ECP_CURVE448_KEY_SIZE 56
Janos Follath171a7ef2019-02-15 16:17:45 +00003083/*
3084 * Read a private key.
3085 */
3086int mbedtls_ecp_read_key( mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair *key,
3087 const unsigned char *buf, size_t buflen )
3088{
3089 int ret = 0;
3090
3091 if( ( ret = mbedtls_ecp_group_load( &key->grp, grp_id ) ) != 0 )
3092 return( ret );
3093
Janos Follath28eb06d2019-02-26 10:53:34 +00003094 ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
3095
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02003096#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00003097 if( mbedtls_ecp_get_type( &key->grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
Janos Follath171a7ef2019-02-15 16:17:45 +00003098 {
Janos Follath28eb06d2019-02-26 10:53:34 +00003099 /*
Archana1d2e2bb2021-06-07 06:13:16 +05303100 * Mask the key as mandated by RFC7748 for Curve25519 and Curve448.
Janos Follath28eb06d2019-02-26 10:53:34 +00003101 */
3102 if( grp_id == MBEDTLS_ECP_DP_CURVE25519 )
3103 {
3104 if( buflen != ECP_CURVE25519_KEY_SIZE )
Archana277572f2021-07-12 09:00:57 +05303105 return( MBEDTLS_ERR_ECP_INVALID_KEY );
Janos Follath171a7ef2019-02-15 16:17:45 +00003106
Janos Follath28eb06d2019-02-26 10:53:34 +00003107 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary_le( &key->d, buf, buflen ) );
Janos Follath171a7ef2019-02-15 16:17:45 +00003108
Janos Follath28eb06d2019-02-26 10:53:34 +00003109 /* Set the three least significant bits to 0 */
3110 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &key->d, 0, 0 ) );
3111 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &key->d, 1, 0 ) );
3112 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &key->d, 2, 0 ) );
Janos Follath171a7ef2019-02-15 16:17:45 +00003113
Janos Follath28eb06d2019-02-26 10:53:34 +00003114 /* Set the most significant bit to 0 */
3115 MBEDTLS_MPI_CHK(
3116 mbedtls_mpi_set_bit( &key->d,
3117 ECP_CURVE25519_KEY_SIZE * 8 - 1, 0 )
3118 );
Janos Follath171a7ef2019-02-15 16:17:45 +00003119
Janos Follath28eb06d2019-02-26 10:53:34 +00003120 /* Set the second most significant bit to 1 */
3121 MBEDTLS_MPI_CHK(
3122 mbedtls_mpi_set_bit( &key->d,
3123 ECP_CURVE25519_KEY_SIZE * 8 - 2, 1 )
3124 );
3125 }
Archana1d2e2bb2021-06-07 06:13:16 +05303126 else if( grp_id == MBEDTLS_ECP_DP_CURVE448 )
3127 {
3128 if( buflen != ECP_CURVE448_KEY_SIZE )
Archana277572f2021-07-12 09:00:57 +05303129 return( MBEDTLS_ERR_ECP_INVALID_KEY );
Archana1d2e2bb2021-06-07 06:13:16 +05303130
3131 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary_le( &key->d, buf, buflen ) );
3132
3133 /* Set the two least significant bits to 0 */
3134 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &key->d, 0, 0 ) );
3135 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &key->d, 1, 0 ) );
3136
3137 /* Set the most significant bit to 1 */
3138 MBEDTLS_MPI_CHK(
3139 mbedtls_mpi_set_bit( &key->d,
3140 ECP_CURVE448_KEY_SIZE * 8 - 1, 1 )
3141 );
3142 }
Janos Follath171a7ef2019-02-15 16:17:45 +00003143 }
3144
3145#endif
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02003146#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Janos Follathdf9295b2019-02-26 12:36:52 +00003147 if( mbedtls_ecp_get_type( &key->grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
Janos Follath171a7ef2019-02-15 16:17:45 +00003148 {
3149 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &key->d, buf, buflen ) );
3150
3151 MBEDTLS_MPI_CHK( mbedtls_ecp_check_privkey( &key->grp, &key->d ) );
3152 }
3153
3154#endif
3155cleanup:
3156
3157 if( ret != 0 )
3158 mbedtls_mpi_free( &key->d );
3159
3160 return( ret );
3161}
3162
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003163/*
Steven Cooremande8593f2020-06-09 19:55:26 +02003164 * Write a private key.
3165 */
Steven Cooreman0024df62020-07-13 10:59:40 +02003166int mbedtls_ecp_write_key( mbedtls_ecp_keypair *key,
Steven Cooremanc9b7f782020-06-11 17:00:36 +02003167 unsigned char *buf, size_t buflen )
Steven Cooremande8593f2020-06-09 19:55:26 +02003168{
Steven Cooreman0024df62020-07-13 10:59:40 +02003169 int ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
Steven Cooremande8593f2020-06-09 19:55:26 +02003170
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02003171#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
Steven Cooremande8593f2020-06-09 19:55:26 +02003172 if( mbedtls_ecp_get_type( &key->grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
3173 {
Steven Cooreman0024df62020-07-13 10:59:40 +02003174 if( key->grp.id == MBEDTLS_ECP_DP_CURVE25519 )
Steven Cooremande8593f2020-06-09 19:55:26 +02003175 {
3176 if( buflen < ECP_CURVE25519_KEY_SIZE )
Archana277572f2021-07-12 09:00:57 +05303177 return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
Steven Cooremande8593f2020-06-09 19:55:26 +02003178
Steven Cooremande8593f2020-06-09 19:55:26 +02003179 }
Archana277572f2021-07-12 09:00:57 +05303180 else if( key->grp.id == MBEDTLS_ECP_DP_CURVE448 )
Archana1d2e2bb2021-06-07 06:13:16 +05303181 {
3182 if( buflen < ECP_CURVE448_KEY_SIZE )
Archana277572f2021-07-12 09:00:57 +05303183 return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
Archana1d2e2bb2021-06-07 06:13:16 +05303184 }
3185 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary_le( &key->d, buf, buflen ) );
Steven Cooremande8593f2020-06-09 19:55:26 +02003186 }
Steven Cooremande8593f2020-06-09 19:55:26 +02003187#endif
Gilles Peskinee8c04fe2018-09-14 17:44:21 +02003188#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Steven Cooremande8593f2020-06-09 19:55:26 +02003189 if( mbedtls_ecp_get_type( &key->grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
3190 {
3191 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &key->d, buf, buflen ) );
Steven Cooremande8593f2020-06-09 19:55:26 +02003192 }
3193
3194#endif
3195cleanup:
3196
3197 return( ret );
3198}
3199
3200
3201/*
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003202 * Check a public-private key pair
3203 */
Manuel Pégourié-Gonnardf8c24bf2021-06-15 11:29:26 +02003204int mbedtls_ecp_check_pub_priv(
3205 const mbedtls_ecp_keypair *pub, const mbedtls_ecp_keypair *prv,
3206 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003207{
Janos Follath24eed8d2019-11-22 13:21:35 +00003208 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003209 mbedtls_ecp_point Q;
3210 mbedtls_ecp_group grp;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003211 if( pub->grp.id == MBEDTLS_ECP_DP_NONE ||
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003212 pub->grp.id != prv->grp.id ||
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003213 mbedtls_mpi_cmp_mpi( &pub->Q.X, &prv->Q.X ) ||
3214 mbedtls_mpi_cmp_mpi( &pub->Q.Y, &prv->Q.Y ) ||
3215 mbedtls_mpi_cmp_mpi( &pub->Q.Z, &prv->Q.Z ) )
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003216 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003217 return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003218 }
3219
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003220 mbedtls_ecp_point_init( &Q );
3221 mbedtls_ecp_group_init( &grp );
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003222
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003223 /* mbedtls_ecp_mul() needs a non-const group... */
3224 mbedtls_ecp_group_copy( &grp, &prv->grp );
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003225
3226 /* Also checks d is valid */
Manuel Pégourié-Gonnardf8c24bf2021-06-15 11:29:26 +02003227 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( &grp, &Q, &prv->d, &prv->grp.G, f_rng, p_rng ) );
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003228
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003229 if( mbedtls_mpi_cmp_mpi( &Q.X, &prv->Q.X ) ||
3230 mbedtls_mpi_cmp_mpi( &Q.Y, &prv->Q.Y ) ||
3231 mbedtls_mpi_cmp_mpi( &Q.Z, &prv->Q.Z ) )
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003232 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003233 ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003234 goto cleanup;
3235 }
3236
3237cleanup:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003238 mbedtls_ecp_point_free( &Q );
3239 mbedtls_ecp_group_free( &grp );
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01003240
3241 return( ret );
3242}
3243
Przemek Stekiel711d0f52022-03-18 13:52:26 +01003244/*
3245 * Export generic key-pair parameters.
3246 */
3247int mbedtls_ecp_export(const mbedtls_ecp_keypair *key, mbedtls_ecp_group *grp,
3248 mbedtls_mpi *d, mbedtls_ecp_point *Q)
3249{
3250 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Przemek Stekiel711d0f52022-03-18 13:52:26 +01003251
3252 if( ( ret = mbedtls_ecp_group_copy( grp, &key->grp ) ) != 0 )
3253 return ret;
3254
3255 if( ( ret = mbedtls_mpi_copy( d, &key->d ) ) != 0 )
3256 return ret;
3257
3258 if( ( ret = mbedtls_ecp_copy( Q, &key->Q ) ) != 0 )
3259 return ret;
3260
3261 return 0;
3262}
3263
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003264#if defined(MBEDTLS_SELF_TEST)
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01003265
Manuel Pégourié-Gonnardaa3ed6f2021-06-15 11:29:26 +02003266/*
3267 * PRNG for test - !!!INSECURE NEVER USE IN PRODUCTION!!!
3268 *
3269 * This is the linear congruential generator from numerical recipes,
3270 * except we only use the low byte as the output. See
3271 * https://en.wikipedia.org/wiki/Linear_congruential_generator#Parameters_in_common_use
3272 */
3273static int self_test_rng( void *ctx, unsigned char *out, size_t len )
3274{
3275 static uint32_t state = 42;
3276
3277 (void) ctx;
3278
3279 for( size_t i = 0; i < len; i++ )
3280 {
3281 state = state * 1664525u + 1013904223u;
3282 out[i] = (unsigned char) state;
3283 }
3284
3285 return( 0 );
3286}
3287
Gilles Peskine6d9c8d72020-07-22 01:26:25 +02003288/* Adjust the exponent to be a valid private point for the specified curve.
3289 * This is sometimes necessary because we use a single set of exponents
3290 * for all curves but the validity of values depends on the curve. */
Gilles Peskinea088c812018-09-17 18:31:15 +02003291static int self_test_adjust_exponent( const mbedtls_ecp_group *grp,
3292 mbedtls_mpi *m )
3293{
3294 int ret = 0;
3295 switch( grp->id )
3296 {
3297 /* If Curve25519 is available, then that's what we use for the
3298 * Montgomery test, so we don't need the adjustment code. */
3299#if ! defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
3300#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
3301 case MBEDTLS_ECP_DP_CURVE448:
3302 /* Move highest bit from 254 to N-1. Setting bit N-1 is
3303 * necessary to enforce the highest-bit-set constraint. */
3304 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( m, 254, 0 ) );
3305 MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( m, grp->nbits, 1 ) );
3306 /* Copy second-highest bit from 253 to N-2. This is not
3307 * necessary but improves the test variety a bit. */
3308 MBEDTLS_MPI_CHK(
3309 mbedtls_mpi_set_bit( m, grp->nbits - 1,
3310 mbedtls_mpi_get_bit( m, 253 ) ) );
3311 break;
3312#endif
3313#endif /* ! defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) */
3314 default:
3315 /* Non-Montgomery curves and Curve25519 need no adjustment. */
3316 (void) grp;
3317 (void) m;
3318 goto cleanup;
3319 }
3320cleanup:
3321 return( ret );
3322}
3323
Gilles Peskine6d9c8d72020-07-22 01:26:25 +02003324/* Calculate R = m.P for each m in exponents. Check that the number of
3325 * basic operations doesn't depend on the value of m. */
Gilles Peskinec95696f2018-09-17 15:59:01 +02003326static int self_test_point( int verbose,
3327 mbedtls_ecp_group *grp,
3328 mbedtls_ecp_point *R,
3329 mbedtls_mpi *m,
Gilles Peskine6d9c8d72020-07-22 01:26:25 +02003330 const mbedtls_ecp_point *P,
Gilles Peskinec95696f2018-09-17 15:59:01 +02003331 const char *const *exponents,
3332 size_t n_exponents )
3333{
3334 int ret = 0;
Gilles Peskine24666792018-09-17 18:29:49 +02003335 size_t i = 0;
Gilles Peskinec95696f2018-09-17 15:59:01 +02003336 unsigned long add_c_prev, dbl_c_prev, mul_c_prev;
3337 add_count = 0;
3338 dbl_count = 0;
3339 mul_count = 0;
Gilles Peskinea088c812018-09-17 18:31:15 +02003340
Gilles Peskinec95696f2018-09-17 15:59:01 +02003341 MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( m, 16, exponents[0] ) );
Gilles Peskinea088c812018-09-17 18:31:15 +02003342 MBEDTLS_MPI_CHK( self_test_adjust_exponent( grp, m ) );
Manuel Pégourié-Gonnardaa3ed6f2021-06-15 11:29:26 +02003343 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( grp, R, m, P, self_test_rng, NULL ) );
Gilles Peskinec95696f2018-09-17 15:59:01 +02003344
3345 for( i = 1; i < n_exponents; i++ )
3346 {
3347 add_c_prev = add_count;
3348 dbl_c_prev = dbl_count;
3349 mul_c_prev = mul_count;
3350 add_count = 0;
3351 dbl_count = 0;
3352 mul_count = 0;
3353
3354 MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( m, 16, exponents[i] ) );
Gilles Peskinea088c812018-09-17 18:31:15 +02003355 MBEDTLS_MPI_CHK( self_test_adjust_exponent( grp, m ) );
Manuel Pégourié-Gonnardaa3ed6f2021-06-15 11:29:26 +02003356 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( grp, R, m, P, self_test_rng, NULL ) );
Gilles Peskinec95696f2018-09-17 15:59:01 +02003357
3358 if( add_count != add_c_prev ||
3359 dbl_count != dbl_c_prev ||
3360 mul_count != mul_c_prev )
3361 {
3362 ret = 1;
3363 break;
3364 }
3365 }
3366
3367cleanup:
3368 if( verbose != 0 )
3369 {
3370 if( ret != 0 )
3371 mbedtls_printf( "failed (%u)\n", (unsigned int) i );
3372 else
3373 mbedtls_printf( "passed\n" );
3374 }
3375 return( ret );
3376}
3377
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +01003378/*
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01003379 * Checkup routine
3380 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003381int mbedtls_ecp_self_test( int verbose )
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01003382{
Janos Follath24eed8d2019-11-22 13:21:35 +00003383 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003384 mbedtls_ecp_group grp;
3385 mbedtls_ecp_point R, P;
3386 mbedtls_mpi m;
Gilles Peskine24666792018-09-17 18:29:49 +02003387
3388#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Gilles Peskined9767a52018-09-14 19:29:47 +02003389 /* Exponents especially adapted for secp192k1, which has the lowest
3390 * order n of all supported curves (secp192r1 is in a slightly larger
3391 * field but the order of its base point is slightly smaller). */
Gilles Peskine24666792018-09-17 18:29:49 +02003392 const char *sw_exponents[] =
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003393 {
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01003394 "000000000000000000000000000000000000000000000001", /* one */
Gilles Peskined9767a52018-09-14 19:29:47 +02003395 "FFFFFFFFFFFFFFFFFFFFFFFE26F2FC170F69466A74DEFD8C", /* n - 1 */
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01003396 "5EA6F389A38B8BC81E767753B15AA5569E1782E30ABE7D25", /* random */
Manuel Pégourié-Gonnardff27b7c2013-11-21 09:28:03 +01003397 "400000000000000000000000000000000000000000000000", /* one and zeros */
3398 "7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", /* all ones */
3399 "555555555555555555555555555555555555555555555555", /* 101010... */
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003400 };
Gilles Peskine24666792018-09-17 18:29:49 +02003401#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
3402#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
3403 const char *m_exponents[] =
3404 {
Gilles Peskine6d9c8d72020-07-22 01:26:25 +02003405 /* Valid private values for Curve25519. In a build with Curve448
3406 * but not Curve25519, they will be adjusted in
3407 * self_test_adjust_exponent(). */
Gilles Peskine24666792018-09-17 18:29:49 +02003408 "4000000000000000000000000000000000000000000000000000000000000000",
3409 "5C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C30",
3410 "5715ECCE24583F7A7023C24164390586842E816D7280A49EF6DF4EAE6B280BF8",
3411 "41A2B017516F6D254E1F002BCCBADD54BE30F8CEC737A0E912B4963B6BA74460",
3412 "5555555555555555555555555555555555555555555555555555555555555550",
3413 "7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8",
3414 };
3415#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003416
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003417 mbedtls_ecp_group_init( &grp );
3418 mbedtls_ecp_point_init( &R );
3419 mbedtls_ecp_point_init( &P );
3420 mbedtls_mpi_init( &m );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003421
Gilles Peskine24666792018-09-17 18:29:49 +02003422#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02003423 /* Use secp192r1 if available, or any available curve */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003424#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
Manuel Pégourié-Gonnarde3a062b2015-05-11 18:46:47 +02003425 MBEDTLS_MPI_CHK( mbedtls_ecp_group_load( &grp, MBEDTLS_ECP_DP_SECP192R1 ) );
Paul Bakker5dc6b5f2013-06-29 23:26:34 +02003426#else
Manuel Pégourié-Gonnarde3a062b2015-05-11 18:46:47 +02003427 MBEDTLS_MPI_CHK( mbedtls_ecp_group_load( &grp, mbedtls_ecp_curve_list()->grp_id ) );
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02003428#endif
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003429
3430 if( verbose != 0 )
Gilles Peskine24666792018-09-17 18:29:49 +02003431 mbedtls_printf( " ECP SW test #1 (constant op_count, base point G): " );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02003432 /* Do a dummy multiplication first to trigger precomputation */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003433 MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &m, 2 ) );
Manuel Pégourié-Gonnardaa3ed6f2021-06-15 11:29:26 +02003434 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( &grp, &P, &m, &grp.G, self_test_rng, NULL ) );
Gilles Peskinec95696f2018-09-17 15:59:01 +02003435 ret = self_test_point( verbose,
3436 &grp, &R, &m, &grp.G,
Gilles Peskine24666792018-09-17 18:29:49 +02003437 sw_exponents,
3438 sizeof( sw_exponents ) / sizeof( sw_exponents[0] ));
Gilles Peskinec95696f2018-09-17 15:59:01 +02003439 if( ret != 0 )
3440 goto cleanup;
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003441
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02003442 if( verbose != 0 )
Gilles Peskine24666792018-09-17 18:29:49 +02003443 mbedtls_printf( " ECP SW test #2 (constant op_count, other point): " );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02003444 /* We computed P = 2G last time, use it */
Gilles Peskinec95696f2018-09-17 15:59:01 +02003445 ret = self_test_point( verbose,
3446 &grp, &R, &m, &P,
Gilles Peskine24666792018-09-17 18:29:49 +02003447 sw_exponents,
3448 sizeof( sw_exponents ) / sizeof( sw_exponents[0] ));
3449 if( ret != 0 )
3450 goto cleanup;
3451
3452 mbedtls_ecp_group_free( &grp );
3453 mbedtls_ecp_point_free( &R );
3454#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
3455
3456#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
3457 if( verbose != 0 )
3458 mbedtls_printf( " ECP Montgomery test (constant op_count): " );
3459#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
3460 MBEDTLS_MPI_CHK( mbedtls_ecp_group_load( &grp, MBEDTLS_ECP_DP_CURVE25519 ) );
3461#elif defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
3462 MBEDTLS_MPI_CHK( mbedtls_ecp_group_load( &grp, MBEDTLS_ECP_DP_CURVE448 ) );
3463#else
3464#error "MBEDTLS_ECP_MONTGOMERY_ENABLED is defined, but no curve is supported for self-test"
3465#endif
3466 ret = self_test_point( verbose,
3467 &grp, &R, &m, &grp.G,
3468 m_exponents,
3469 sizeof( m_exponents ) / sizeof( m_exponents[0] ));
3470 if( ret != 0 )
3471 goto cleanup;
3472#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02003473
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003474cleanup:
3475
3476 if( ret < 0 && verbose != 0 )
Kenneth Soerensen518d4352020-04-01 17:22:45 +02003477 mbedtls_printf( "Unexpected error, return code = %08X\n", (unsigned int) ret );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003478
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003479 mbedtls_ecp_group_free( &grp );
3480 mbedtls_ecp_point_free( &R );
3481 mbedtls_ecp_point_free( &P );
3482 mbedtls_mpi_free( &m );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003483
3484 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003485 mbedtls_printf( "\n" );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01003486
3487 return( ret );
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01003488}
3489
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003490#endif /* MBEDTLS_SELF_TEST */
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01003491
Janos Follathb0697532016-08-18 12:38:46 +01003492#endif /* !MBEDTLS_ECP_ALT */
3493
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003494#endif /* MBEDTLS_ECP_C */