blob: aca3a2d2ca65d6d3559373d64bd654e2871557a5 [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 *
Manuel Pégourié-Gonnarda658a402015-01-23 09:45:19 +00004 * Copyright (C) 2006-2014, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01005 *
Manuel Pégourié-Gonnard860b5162015-01-28 17:12:07 +00006 * This file is part of mbed TLS (https://polarssl.org)
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01007 *
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23/*
24 * References:
25 *
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +010026 * SEC1 http://www.secg.org/index.php?action=secg,docs_secg
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +010027 * GECC = Guide to Elliptic Curve Cryptography - Hankerson, Menezes, Vanstone
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +010028 * FIPS 186-3 http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +010029 * RFC 4492 for the related TLS structures and constants
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +020030 *
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +010031 * [M255] http://cr.yp.to/ecdh/curve25519-20060209.pdf
32 *
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +020033 * [2] CORON, Jean-Sébastien. Resistance against differential power analysis
34 * for elliptic curve cryptosystems. In : Cryptographic Hardware and
35 * Embedded Systems. Springer Berlin Heidelberg, 1999. p. 292-302.
36 * <http://link.springer.com/chapter/10.1007/3-540-48059-5_25>
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +010037 *
38 * [3] HEDABOU, Mustapha, PINEL, Pierre, et BÉNÉTEAU, Lucien. A comb method to
39 * render ECC resistant against Side Channel Attacks. IACR Cryptology
40 * ePrint Archive, 2004, vol. 2004, p. 342.
41 * <http://eprint.iacr.org/2004/342.pdf>
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010042 */
43
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020044#if !defined(POLARSSL_CONFIG_FILE)
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010045#include "polarssl/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020046#else
47#include POLARSSL_CONFIG_FILE
48#endif
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010049
50#if defined(POLARSSL_ECP_C)
51
52#include "polarssl/ecp.h"
Paul Bakker6e339b52013-07-03 13:37:05 +020053
Paul Bakker7dc4c442014-02-01 22:50:26 +010054#if defined(POLARSSL_PLATFORM_C)
55#include "polarssl/platform.h"
Paul Bakker6e339b52013-07-03 13:37:05 +020056#else
Paul Bakker7dc4c442014-02-01 22:50:26 +010057#define polarssl_printf printf
Paul Bakker6e339b52013-07-03 13:37:05 +020058#define polarssl_malloc malloc
59#define polarssl_free free
60#endif
61
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +010062#include <stdlib.h>
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010063
Manuel Pégourié-Gonnard0267e3d2013-11-30 15:10:14 +010064#if defined(_MSC_VER) && !defined strcasecmp && !defined(EFIX64) && \
65 !defined(EFI32)
66#define strcasecmp _stricmp
67#endif
68
Paul Bakker6a6087e2013-10-28 18:53:08 +010069#if defined(_MSC_VER) && !defined(inline)
70#define inline _inline
71#else
72#if defined(__ARMCC_VERSION) && !defined(inline)
73#define inline __inline
74#endif /* __ARMCC_VERSION */
75#endif /*_MSC_VER */
76
Paul Bakker34617722014-06-13 17:20:13 +020077/* Implementation that should never be optimized out by the compiler */
78static void polarssl_zeroize( void *v, size_t n ) {
79 volatile unsigned char *p = v; while( n-- ) *p++ = 0;
80}
81
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +010082#if defined(POLARSSL_SELF_TEST)
83/*
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +010084 * Counts of point addition and doubling, and field multiplications.
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +020085 * Used to test resistance of point multiplication to simple timing attacks.
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +010086 */
Manuel Pégourié-Gonnard43863ee2013-12-01 16:51:27 +010087static unsigned long add_count, dbl_count, mul_count;
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +010088#endif
89
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +010090#if defined(POLARSSL_ECP_DP_SECP192R1_ENABLED) || \
91 defined(POLARSSL_ECP_DP_SECP224R1_ENABLED) || \
92 defined(POLARSSL_ECP_DP_SECP256R1_ENABLED) || \
93 defined(POLARSSL_ECP_DP_SECP384R1_ENABLED) || \
94 defined(POLARSSL_ECP_DP_SECP521R1_ENABLED) || \
95 defined(POLARSSL_ECP_DP_BP256R1_ENABLED) || \
96 defined(POLARSSL_ECP_DP_BP384R1_ENABLED) || \
Manuel Pégourié-Gonnard2a2ae642014-02-24 08:29:51 +010097 defined(POLARSSL_ECP_DP_BP512R1_ENABLED) || \
98 defined(POLARSSL_ECP_DP_SECP192K1_ENABLED) || \
99 defined(POLARSSL_ECP_DP_SECP224K1_ENABLED) || \
100 defined(POLARSSL_ECP_DP_SECP256K1_ENABLED)
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100101#define POLARSSL_ECP_SHORT_WEIERSTRASS
102#endif
103
104#if defined(POLARSSL_ECP_DP_M221_ENABLED) || \
105 defined(POLARSSL_ECP_DP_M255_ENABLED) || \
106 defined(POLARSSL_ECP_DP_M383_ENABLED) || \
107 defined(POLARSSL_ECP_DP_M511_ENABLED)
108#define POLARSSL_ECP_MONTGOMERY
109#endif
110
111/*
112 * Curve types: internal for now, might be exposed later
113 */
114typedef enum
115{
116 POLARSSL_ECP_TYPE_NONE = 0,
117 POLARSSL_ECP_TYPE_SHORT_WEIERSTRASS, /* y^2 = x^3 + a x + b */
118 POLARSSL_ECP_TYPE_MONTGOMERY, /* y^2 = x^3 + a x^2 + x */
119} ecp_curve_type;
120
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100121/*
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200122 * List of supported curves:
123 * - internal ID
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200124 * - TLS NamedCurve ID (RFC 4492 sec. 5.1.1, RFC 7071 sec. 2)
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200125 * - size in bits
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200126 * - readable name
Gergely Budaie40c4692014-01-22 11:22:20 +0100127 *
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100128 * Curves are listed in order: largest curves first, and for a given size,
129 * fastest curves first. This provides the default order for the SSL module.
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200130 */
Manuel Pégourié-Gonnardba782bb2014-07-08 13:31:34 +0200131static const ecp_curve_info ecp_supported_curves[] =
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200132{
133#if defined(POLARSSL_ECP_DP_SECP521R1_ENABLED)
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200134 { POLARSSL_ECP_DP_SECP521R1, 25, 521, "secp521r1" },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200135#endif
Gergely Budaie40c4692014-01-22 11:22:20 +0100136#if defined(POLARSSL_ECP_DP_BP512R1_ENABLED)
137 { POLARSSL_ECP_DP_BP512R1, 28, 512, "brainpoolP512r1" },
138#endif
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200139#if defined(POLARSSL_ECP_DP_SECP384R1_ENABLED)
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200140 { POLARSSL_ECP_DP_SECP384R1, 24, 384, "secp384r1" },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200141#endif
Gergely Budaie40c4692014-01-22 11:22:20 +0100142#if defined(POLARSSL_ECP_DP_BP384R1_ENABLED)
143 { POLARSSL_ECP_DP_BP384R1, 27, 384, "brainpoolP384r1" },
144#endif
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200145#if defined(POLARSSL_ECP_DP_SECP256R1_ENABLED)
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200146 { POLARSSL_ECP_DP_SECP256R1, 23, 256, "secp256r1" },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200147#endif
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100148#if defined(POLARSSL_ECP_DP_SECP256K1_ENABLED)
149 { POLARSSL_ECP_DP_SECP256K1, 22, 256, "secp256k1" },
150#endif
Gergely Budaie40c4692014-01-22 11:22:20 +0100151#if defined(POLARSSL_ECP_DP_BP256R1_ENABLED)
152 { POLARSSL_ECP_DP_BP256R1, 26, 256, "brainpoolP256r1" },
153#endif
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200154#if defined(POLARSSL_ECP_DP_SECP224R1_ENABLED)
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200155 { POLARSSL_ECP_DP_SECP224R1, 21, 224, "secp224r1" },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200156#endif
Manuel Pégourié-Gonnard9bcff392014-01-10 18:26:48 +0100157#if defined(POLARSSL_ECP_DP_SECP224K1_ENABLED)
158 { POLARSSL_ECP_DP_SECP224K1, 20, 224, "secp224k1" },
159#endif
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100160#if defined(POLARSSL_ECP_DP_SECP192R1_ENABLED)
161 { POLARSSL_ECP_DP_SECP192R1, 19, 192, "secp192r1" },
162#endif
Manuel Pégourié-Gonnard9bcff392014-01-10 18:26:48 +0100163#if defined(POLARSSL_ECP_DP_SECP192K1_ENABLED)
164 { POLARSSL_ECP_DP_SECP192K1, 18, 192, "secp192k1" },
165#endif
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200166 { POLARSSL_ECP_DP_NONE, 0, 0, NULL },
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200167};
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100168
Manuel Pégourié-Gonnardba782bb2014-07-08 13:31:34 +0200169#define ECP_NB_CURVES sizeof( ecp_supported_curves ) / \
170 sizeof( ecp_supported_curves[0] )
171
172static ecp_group_id ecp_supported_grp_id[ECP_NB_CURVES];
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200173
174/*
Manuel Pégourié-Gonnardda179e42013-09-18 15:31:24 +0200175 * List of supported curves and associated info
176 */
177const ecp_curve_info *ecp_curve_list( void )
178{
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200179 return( ecp_supported_curves );
Manuel Pégourié-Gonnardda179e42013-09-18 15:31:24 +0200180}
181
182/*
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100183 * List of supported curves, group ID only
184 */
185const ecp_group_id *ecp_grp_id_list( void )
186{
187 static int init_done = 0;
188
189 if( ! init_done )
190 {
191 size_t i = 0;
192 const ecp_curve_info *curve_info;
193
194 for( curve_info = ecp_curve_list();
195 curve_info->grp_id != POLARSSL_ECP_DP_NONE;
196 curve_info++ )
197 {
198 ecp_supported_grp_id[i++] = curve_info->grp_id;
199 }
200 ecp_supported_grp_id[i] = POLARSSL_ECP_DP_NONE;
201
202 init_done = 1;
203 }
204
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200205 return( ecp_supported_grp_id );
Manuel Pégourié-Gonnardac719412014-02-04 14:48:50 +0100206}
207
208/*
209 * Get the curve info for the internal identifier
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200210 */
211const ecp_curve_info *ecp_curve_info_from_grp_id( ecp_group_id grp_id )
212{
213 const ecp_curve_info *curve_info;
214
215 for( curve_info = ecp_curve_list();
216 curve_info->grp_id != POLARSSL_ECP_DP_NONE;
217 curve_info++ )
218 {
219 if( curve_info->grp_id == grp_id )
220 return( curve_info );
221 }
222
223 return( NULL );
224}
225
226/*
227 * Get the curve info from the TLS identifier
228 */
229const ecp_curve_info *ecp_curve_info_from_tls_id( uint16_t tls_id )
230{
231 const ecp_curve_info *curve_info;
232
233 for( curve_info = ecp_curve_list();
234 curve_info->grp_id != POLARSSL_ECP_DP_NONE;
235 curve_info++ )
236 {
237 if( curve_info->tls_id == tls_id )
238 return( curve_info );
239 }
240
241 return( NULL );
242}
243
244/*
Manuel Pégourié-Gonnard0267e3d2013-11-30 15:10:14 +0100245 * Get the curve info from the name
246 */
247const ecp_curve_info *ecp_curve_info_from_name( const char *name )
248{
249 const ecp_curve_info *curve_info;
250
251 for( curve_info = ecp_curve_list();
252 curve_info->grp_id != POLARSSL_ECP_DP_NONE;
253 curve_info++ )
254 {
255 if( strcasecmp( curve_info->name, name ) == 0 )
256 return( curve_info );
257 }
258
259 return( NULL );
260}
261
262/*
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100263 * Get the type of a curve
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +0100264 */
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100265static inline ecp_curve_type ecp_get_type( const ecp_group *grp )
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +0100266{
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100267 if( grp->G.X.p == NULL )
268 return( POLARSSL_ECP_TYPE_NONE );
269
270 if( grp->G.Y.p == NULL )
271 return( POLARSSL_ECP_TYPE_MONTGOMERY );
272 else
273 return( POLARSSL_ECP_TYPE_SHORT_WEIERSTRASS );
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +0100274}
275
276/*
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +0100277 * Initialize (the components of) a point
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100278 */
279void ecp_point_init( ecp_point *pt )
280{
281 if( pt == NULL )
282 return;
283
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +0100284 mpi_init( &pt->X );
285 mpi_init( &pt->Y );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100286 mpi_init( &pt->Z );
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +0100287}
288
289/*
290 * Initialize (the components of) a group
291 */
292void ecp_group_init( ecp_group *grp )
293{
294 if( grp == NULL )
295 return;
296
Manuel Pégourié-Gonnardc9727702013-09-16 18:56:28 +0200297 memset( grp, 0, sizeof( ecp_group ) );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100298}
299
300/*
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200301 * Initialize (the components of) a key pair
302 */
303void ecp_keypair_init( ecp_keypair *key )
304{
Paul Bakker66d5d072014-06-17 16:39:18 +0200305 if( key == NULL )
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200306 return;
307
308 ecp_group_init( &key->grp );
309 mpi_init( &key->d );
310 ecp_point_init( &key->Q );
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200311}
312
313/*
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100314 * Unallocate (the components of) a point
315 */
316void ecp_point_free( ecp_point *pt )
317{
318 if( pt == NULL )
319 return;
320
321 mpi_free( &( pt->X ) );
322 mpi_free( &( pt->Y ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100323 mpi_free( &( pt->Z ) );
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100324}
325
326/*
327 * Unallocate (the components of) a group
328 */
329void ecp_group_free( ecp_group *grp )
330{
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +0200331 size_t i;
332
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100333 if( grp == NULL )
334 return;
335
Manuel Pégourié-Gonnard1f82b042013-12-06 12:51:50 +0100336 if( grp->h != 1 )
337 {
338 mpi_free( &grp->P );
339 mpi_free( &grp->A );
340 mpi_free( &grp->B );
341 ecp_point_free( &grp->G );
342 mpi_free( &grp->N );
343 }
Manuel Pégourié-Gonnardc9727702013-09-16 18:56:28 +0200344
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +0200345 if( grp->T != NULL )
346 {
347 for( i = 0; i < grp->T_size; i++ )
348 ecp_point_free( &grp->T[i] );
349 polarssl_free( grp->T );
350 }
351
Paul Bakker34617722014-06-13 17:20:13 +0200352 polarssl_zeroize( grp, sizeof( ecp_group ) );
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100353}
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +0100354
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +0100355/*
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200356 * Unallocate (the components of) a key pair
357 */
358void ecp_keypair_free( ecp_keypair *key )
359{
Paul Bakker66d5d072014-06-17 16:39:18 +0200360 if( key == NULL )
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200361 return;
362
363 ecp_group_free( &key->grp );
364 mpi_free( &key->d );
365 ecp_point_free( &key->Q );
Manuel Pégourié-Gonnardb8c6e0e2013-07-01 13:40:52 +0200366}
367
368/*
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200369 * Copy the contents of a point
370 */
371int ecp_copy( ecp_point *P, const ecp_point *Q )
372{
373 int ret;
374
375 MPI_CHK( mpi_copy( &P->X, &Q->X ) );
376 MPI_CHK( mpi_copy( &P->Y, &Q->Y ) );
377 MPI_CHK( mpi_copy( &P->Z, &Q->Z ) );
378
379cleanup:
380 return( ret );
381}
382
383/*
384 * Copy the contents of a group object
385 */
386int ecp_group_copy( ecp_group *dst, const ecp_group *src )
387{
388 return ecp_use_known_dp( dst, src->id );
389}
390
391/*
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100392 * Set point to zero
393 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100394int ecp_set_zero( ecp_point *pt )
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100395{
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100396 int ret;
397
398 MPI_CHK( mpi_lset( &pt->X , 1 ) );
399 MPI_CHK( mpi_lset( &pt->Y , 1 ) );
400 MPI_CHK( mpi_lset( &pt->Z , 0 ) );
401
402cleanup:
403 return( ret );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100404}
405
406/*
Manuel Pégourié-Gonnard6545ca72013-01-26 16:05:22 +0100407 * Tell if a point is zero
408 */
409int ecp_is_zero( ecp_point *pt )
410{
411 return( mpi_cmp_int( &pt->Z, 0 ) == 0 );
412}
413
414/*
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100415 * Import a non-zero point from ASCII strings
416 */
417int ecp_point_read_string( ecp_point *P, int radix,
418 const char *x, const char *y )
419{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100420 int ret;
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100421
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100422 MPI_CHK( mpi_read_string( &P->X, radix, x ) );
423 MPI_CHK( mpi_read_string( &P->Y, radix, y ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100424 MPI_CHK( mpi_lset( &P->Z, 1 ) );
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100425
426cleanup:
427 return( ret );
428}
429
430/*
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100431 * Export a point into unsigned binary data (SEC1 2.3.3)
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100432 */
Manuel Pégourié-Gonnard7e860252013-02-10 10:58:48 +0100433int ecp_point_write_binary( const ecp_group *grp, const ecp_point *P,
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100434 int format, size_t *olen,
Manuel Pégourié-Gonnard7e860252013-02-10 10:58:48 +0100435 unsigned char *buf, size_t buflen )
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100436{
Paul Bakkera280d0f2013-04-08 13:40:17 +0200437 int ret = 0;
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100438 size_t plen;
439
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100440 if( format != POLARSSL_ECP_PF_UNCOMPRESSED &&
441 format != POLARSSL_ECP_PF_COMPRESSED )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100442 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100443
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100444 /*
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100445 * Common case: P == 0
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100446 */
447 if( mpi_cmp_int( &P->Z, 0 ) == 0 )
448 {
449 if( buflen < 1 )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100450 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100451
452 buf[0] = 0x00;
453 *olen = 1;
454
455 return( 0 );
456 }
457
458 plen = mpi_size( &grp->P );
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100459
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100460 if( format == POLARSSL_ECP_PF_UNCOMPRESSED )
461 {
462 *olen = 2 * plen + 1;
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100463
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100464 if( buflen < *olen )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100465 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100466
467 buf[0] = 0x04;
468 MPI_CHK( mpi_write_binary( &P->X, buf + 1, plen ) );
469 MPI_CHK( mpi_write_binary( &P->Y, buf + 1 + plen, plen ) );
470 }
471 else if( format == POLARSSL_ECP_PF_COMPRESSED )
472 {
473 *olen = plen + 1;
474
475 if( buflen < *olen )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100476 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100477
478 buf[0] = 0x02 + mpi_get_bit( &P->Y, 0 );
479 MPI_CHK( mpi_write_binary( &P->X, buf + 1, plen ) );
480 }
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100481
482cleanup:
483 return( ret );
484}
485
486/*
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100487 * Import a point from unsigned binary data (SEC1 2.3.4)
488 */
Manuel Pégourié-Gonnard7e860252013-02-10 10:58:48 +0100489int ecp_point_read_binary( const ecp_group *grp, ecp_point *pt,
Manuel Pégourié-Gonnard5246ee52014-03-19 16:18:38 +0100490 const unsigned char *buf, size_t ilen )
491{
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100492 int ret;
493 size_t plen;
494
Paul Bakker82788fb2014-10-20 13:59:19 +0200495 if( ilen < 1 )
Manuel Pégourié-Gonnard67dbe1e2014-07-08 13:09:24 +0200496 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
497
Manuel Pégourié-Gonnardc042cf02014-03-26 14:12:20 +0100498 if( buf[0] == 0x00 )
499 {
500 if( ilen == 1 )
501 return( ecp_set_zero( pt ) );
502 else
503 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
504 }
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100505
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100506 plen = mpi_size( &grp->P );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100507
Manuel Pégourié-Gonnard5246ee52014-03-19 16:18:38 +0100508 if( buf[0] != 0x04 )
509 return( POLARSSL_ERR_ECP_FEATURE_UNAVAILABLE );
510
511 if( ilen != 2 * plen + 1 )
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100512 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100513
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100514 MPI_CHK( mpi_read_binary( &pt->X, buf + 1, plen ) );
515 MPI_CHK( mpi_read_binary( &pt->Y, buf + 1 + plen, plen ) );
516 MPI_CHK( mpi_lset( &pt->Z, 1 ) );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100517
518cleanup:
519 return( ret );
520}
521
522/*
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100523 * Import a point from a TLS ECPoint record (RFC 4492)
524 * struct {
525 * opaque point <1..2^8-1>;
526 * } ECPoint;
527 */
528int ecp_tls_read_point( const ecp_group *grp, ecp_point *pt,
Manuel Pégourié-Gonnard98f51812013-02-10 13:38:29 +0100529 const unsigned char **buf, size_t buf_len )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100530{
531 unsigned char data_len;
Manuel Pégourié-Gonnard98f51812013-02-10 13:38:29 +0100532 const unsigned char *buf_start;
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100533
534 /*
Manuel Pégourié-Gonnard67dbe1e2014-07-08 13:09:24 +0200535 * We must have at least two bytes (1 for length, at least one for data)
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100536 */
537 if( buf_len < 2 )
538 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
539
Manuel Pégourié-Gonnard98f51812013-02-10 13:38:29 +0100540 data_len = *(*buf)++;
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100541 if( data_len < 1 || data_len > buf_len - 1 )
542 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
543
Manuel Pégourié-Gonnard98f51812013-02-10 13:38:29 +0100544 /*
545 * Save buffer start for read_binary and update buf
546 */
547 buf_start = *buf;
548 *buf += data_len;
549
550 return ecp_point_read_binary( grp, pt, buf_start, data_len );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100551}
552
553/*
554 * Export a point as a TLS ECPoint record (RFC 4492)
555 * struct {
556 * opaque point <1..2^8-1>;
557 * } ECPoint;
558 */
559int ecp_tls_write_point( const ecp_group *grp, const ecp_point *pt,
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100560 int format, size_t *olen,
561 unsigned char *buf, size_t blen )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100562{
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100563 int ret;
564
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100565 /*
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100566 * buffer length must be at least one, for our length byte
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100567 */
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100568 if( blen < 1 )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100569 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
570
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100571 if( ( ret = ecp_point_write_binary( grp, pt, format,
572 olen, buf + 1, blen - 1) ) != 0 )
573 return( ret );
574
575 /*
576 * write length to the first byte and update total length
577 */
Paul Bakkerb9cfaa02013-10-11 18:58:55 +0200578 buf[0] = (unsigned char) *olen;
Manuel Pégourié-Gonnard420f1eb2013-02-10 12:22:46 +0100579 ++*olen;
580
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200581 return( 0 );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100582}
583
584/*
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200585 * Import an ECP group from ASCII strings, case A == -3
Manuel Pégourié-Gonnard210b4582013-10-23 14:03:00 +0200586 */
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200587int ecp_group_read_string( ecp_group *grp, int radix,
588 const char *p, const char *b,
589 const char *gx, const char *gy, const char *n)
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100590{
591 int ret;
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100592
Manuel Pégourié-Gonnardd5e0fbe2013-12-02 17:20:39 +0100593 MPI_CHK( mpi_read_string( &grp->P, radix, p ) );
Manuel Pégourié-Gonnardd5e0fbe2013-12-02 17:20:39 +0100594 MPI_CHK( mpi_read_string( &grp->B, radix, b ) );
595 MPI_CHK( ecp_point_read_string( &grp->G, radix, gx, gy ) );
596 MPI_CHK( mpi_read_string( &grp->N, radix, n ) );
597
598 grp->pbits = mpi_msb( &grp->P );
599 grp->nbits = mpi_msb( &grp->N );
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100600
601cleanup:
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200602 if( ret != 0 )
603 ecp_group_free( grp );
Manuel Pégourié-Gonnarde783f062013-10-21 14:52:21 +0200604
605 return( ret );
606}
Manuel Pégourié-Gonnardc04c5302013-10-23 16:11:52 +0200607
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100608/*
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100609 * Set a group from an ECParameters record (RFC 4492)
610 */
Manuel Pégourié-Gonnard7c145c62013-02-10 13:20:52 +0100611int ecp_tls_read_group( ecp_group *grp, const unsigned char **buf, size_t len )
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100612{
Manuel Pégourié-Gonnardf24b4a72013-09-23 18:14:50 +0200613 uint16_t tls_id;
614 const ecp_curve_info *curve_info;
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100615
616 /*
617 * We expect at least three bytes (see below)
618 */
619 if( len < 3 )
620 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
621
622 /*
623 * First byte is curve_type; only named_curve is handled
624 */
Manuel Pégourié-Gonnard7c145c62013-02-10 13:20:52 +0100625 if( *(*buf)++ != POLARSSL_ECP_TLS_NAMED_CURVE )
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100626 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
627
628 /*
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100629 * Next two bytes are the namedcurve value
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100630 */
Manuel Pégourié-Gonnardf24b4a72013-09-23 18:14:50 +0200631 tls_id = *(*buf)++;
632 tls_id <<= 8;
633 tls_id |= *(*buf)++;
634
635 if( ( curve_info = ecp_curve_info_from_tls_id( tls_id ) ) == NULL )
636 return( POLARSSL_ERR_ECP_FEATURE_UNAVAILABLE );
637
638 return ecp_use_known_dp( grp, curve_info->grp_id );
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100639}
640
641/*
642 * Write the ECParameters record corresponding to a group (RFC 4492)
643 */
644int ecp_tls_write_group( const ecp_group *grp, size_t *olen,
645 unsigned char *buf, size_t blen )
646{
Manuel Pégourié-Gonnardf24b4a72013-09-23 18:14:50 +0200647 const ecp_curve_info *curve_info;
648
649 if( ( curve_info = ecp_curve_info_from_grp_id( grp->id ) ) == NULL )
650 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200651
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100652 /*
653 * We are going to write 3 bytes (see below)
654 */
655 *olen = 3;
656 if( blen < *olen )
657 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
658
659 /*
660 * First byte is curve_type, always named_curve
661 */
662 *buf++ = POLARSSL_ECP_TLS_NAMED_CURVE;
663
664 /*
665 * Next two bytes are the namedcurve value
666 */
Manuel Pégourié-Gonnardf24b4a72013-09-23 18:14:50 +0200667 buf[0] = curve_info->tls_id >> 8;
668 buf[1] = curve_info->tls_id & 0xFF;
Manuel Pégourié-Gonnardb3258872013-02-10 12:06:19 +0100669
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200670 return( 0 );
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100671}
Manuel Pégourié-Gonnardab38b702012-11-05 17:34:55 +0100672
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200673/*
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200674 * Wrapper around fast quasi-modp functions, with fall-back to mpi_mod_mpi.
675 * See the documentation of struct ecp_group.
676 *
677 * This function is in the critial loop for ecp_mul, so pay attention to perf.
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200678 */
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200679static int ecp_modp( mpi *N, const ecp_group *grp )
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200680{
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200681 int ret;
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200682
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200683 if( grp->modp == NULL )
684 return( mpi_mod_mpi( N, N, &grp->P ) );
685
686 /* N->s < 0 is a much faster test, which fails only if N is 0 */
687 if( ( N->s < 0 && mpi_cmp_int( N, 0 ) != 0 ) ||
688 mpi_msb( N ) > 2 * grp->pbits )
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200689 {
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200690 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200691 }
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200692
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200693 MPI_CHK( grp->modp( N ) );
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200694
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200695 /* N->s < 0 is a much faster test, which fails only if N is 0 */
696 while( N->s < 0 && mpi_cmp_int( N, 0 ) != 0 )
697 MPI_CHK( mpi_add_mpi( N, N, &grp->P ) );
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200698
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200699 while( mpi_cmp_mpi( N, &grp->P ) >= 0 )
700 /* we known P, N and the result are positive */
701 MPI_CHK( mpi_sub_abs( N, N, &grp->P ) );
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200702
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200703cleanup:
704 return( ret );
Manuel Pégourié-Gonnard70380392013-09-16 16:19:53 +0200705}
Manuel Pégourié-Gonnard568c9cf2013-09-16 17:30:04 +0200706
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100707/*
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100708 * Fast mod-p functions expect their argument to be in the 0..p^2 range.
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100709 *
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100710 * In order to guarantee that, we need to ensure that operands of
711 * mpi_mul_mpi are in the 0..p range. So, after each operation we will
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100712 * bring the result back to this range.
713 *
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100714 * The following macros are shortcuts for doing that.
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100715 */
716
717/*
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100718 * Reduce a mpi mod p in-place, general case, to use after mpi_mul_mpi
719 */
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +0100720#if defined(POLARSSL_SELF_TEST)
721#define INC_MUL_COUNT mul_count++;
722#else
723#define INC_MUL_COUNT
724#endif
725
726#define MOD_MUL( N ) do { MPI_CHK( ecp_modp( &N, grp ) ); INC_MUL_COUNT } \
727 while( 0 )
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100728
729/*
730 * Reduce a mpi mod p in-place, to use after mpi_sub_mpi
Manuel Pégourié-Gonnardc9e387c2013-10-17 17:15:35 +0200731 * N->s < 0 is a very fast test, which fails only if N is 0
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100732 */
733#define MOD_SUB( N ) \
Manuel Pégourié-Gonnardcae6f3e2013-10-23 20:19:57 +0200734 while( N.s < 0 && mpi_cmp_int( &N, 0 ) != 0 ) \
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100735 MPI_CHK( mpi_add_mpi( &N, &N, &grp->P ) )
736
737/*
Manuel Pégourié-Gonnardc9e387c2013-10-17 17:15:35 +0200738 * Reduce a mpi mod p in-place, to use after mpi_add_mpi and mpi_mul_int.
739 * We known P, N and the result are positive, so sub_abs is correct, and
740 * a bit faster.
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100741 */
742#define MOD_ADD( N ) \
743 while( mpi_cmp_mpi( &N, &grp->P ) >= 0 ) \
Manuel Pégourié-Gonnardc9e387c2013-10-17 17:15:35 +0200744 MPI_CHK( mpi_sub_abs( &N, &N, &grp->P ) )
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100745
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100746#if defined(POLARSSL_ECP_SHORT_WEIERSTRASS)
747/*
748 * For curves in short Weierstrass form, we do all the internal operations in
749 * Jacobian coordinates.
750 *
751 * For multiplication, we'll use a comb method with coutermeasueres against
752 * SPA, hence timing attacks.
753 */
754
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100755/*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100756 * Normalize jacobian coordinates so that Z == 0 || Z == 1 (GECC 3.2.1)
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +0100757 * Cost: 1N := 1I + 3M + 1S
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100758 */
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +0100759static int ecp_normalize_jac( const ecp_group *grp, ecp_point *pt )
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100760{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100761 int ret;
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100762 mpi Zi, ZZi;
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100763
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100764 if( mpi_cmp_int( &pt->Z, 0 ) == 0 )
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100765 return( 0 );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100766
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100767 mpi_init( &Zi ); mpi_init( &ZZi );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100768
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100769 /*
770 * X = X / Z^2 mod p
771 */
772 MPI_CHK( mpi_inv_mod( &Zi, &pt->Z, &grp->P ) );
773 MPI_CHK( mpi_mul_mpi( &ZZi, &Zi, &Zi ) ); MOD_MUL( ZZi );
774 MPI_CHK( mpi_mul_mpi( &pt->X, &pt->X, &ZZi ) ); MOD_MUL( pt->X );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100775
776 /*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100777 * Y = Y / Z^3 mod p
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100778 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100779 MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &ZZi ) ); MOD_MUL( pt->Y );
780 MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &Zi ) ); MOD_MUL( pt->Y );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100781
782 /*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100783 * Z = 1
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100784 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100785 MPI_CHK( mpi_lset( &pt->Z, 1 ) );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100786
787cleanup:
788
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100789 mpi_free( &Zi ); mpi_free( &ZZi );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100790
791 return( ret );
792}
793
794/*
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +0100795 * Normalize jacobian coordinates of an array of (pointers to) points,
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +0100796 * using Montgomery's trick to perform only one inversion mod P.
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100797 * (See for example Cohen's "A Course in Computational Algebraic Number
798 * Theory", Algorithm 10.3.4.)
799 *
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +0200800 * Warning: fails (returning an error) if one of the points is zero!
Manuel Pégourié-Gonnard7a949d32013-12-05 10:26:01 +0100801 * This should never happen, see choice of w in ecp_mul_comb().
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +0100802 *
803 * Cost: 1N(t) := 1I + (6t - 3)M + 1S
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100804 */
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +0100805static int ecp_normalize_jac_many( const ecp_group *grp,
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +0100806 ecp_point *T[], size_t t_len )
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100807{
808 int ret;
809 size_t i;
810 mpi *c, u, Zi, ZZi;
811
812 if( t_len < 2 )
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +0100813 return( ecp_normalize_jac( grp, *T ) );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100814
Paul Bakker6e339b52013-07-03 13:37:05 +0200815 if( ( c = (mpi *) polarssl_malloc( t_len * sizeof( mpi ) ) ) == NULL )
Manuel Pégourié-Gonnard456d3b92013-09-16 18:04:38 +0200816 return( POLARSSL_ERR_ECP_MALLOC_FAILED );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100817
818 mpi_init( &u ); mpi_init( &Zi ); mpi_init( &ZZi );
819 for( i = 0; i < t_len; i++ )
820 mpi_init( &c[i] );
821
822 /*
823 * c[i] = Z_0 * ... * Z_i
824 */
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +0100825 MPI_CHK( mpi_copy( &c[0], &T[0]->Z ) );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100826 for( i = 1; i < t_len; i++ )
827 {
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +0100828 MPI_CHK( mpi_mul_mpi( &c[i], &c[i-1], &T[i]->Z ) );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100829 MOD_MUL( c[i] );
830 }
831
832 /*
833 * u = 1 / (Z_0 * ... * Z_n) mod P
834 */
835 MPI_CHK( mpi_inv_mod( &u, &c[t_len-1], &grp->P ) );
836
837 for( i = t_len - 1; ; i-- )
838 {
839 /*
840 * Zi = 1 / Z_i mod p
841 * u = 1 / (Z_0 * ... * Z_i) mod P
842 */
843 if( i == 0 ) {
844 MPI_CHK( mpi_copy( &Zi, &u ) );
845 }
846 else
847 {
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +0100848 MPI_CHK( mpi_mul_mpi( &Zi, &u, &c[i-1] ) ); MOD_MUL( Zi );
849 MPI_CHK( mpi_mul_mpi( &u, &u, &T[i]->Z ) ); MOD_MUL( u );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100850 }
851
852 /*
853 * proceed as in normalize()
854 */
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +0100855 MPI_CHK( mpi_mul_mpi( &ZZi, &Zi, &Zi ) ); MOD_MUL( ZZi );
856 MPI_CHK( mpi_mul_mpi( &T[i]->X, &T[i]->X, &ZZi ) ); MOD_MUL( T[i]->X );
857 MPI_CHK( mpi_mul_mpi( &T[i]->Y, &T[i]->Y, &ZZi ) ); MOD_MUL( T[i]->Y );
858 MPI_CHK( mpi_mul_mpi( &T[i]->Y, &T[i]->Y, &Zi ) ); MOD_MUL( T[i]->Y );
Manuel Pégourié-Gonnard1f789b82013-12-30 17:31:56 +0100859
860 /*
861 * Post-precessing: reclaim some memory by shrinking coordinates
862 * - not storing Z (always 1)
863 * - shrinking other coordinates, but still keeping the same number of
864 * limbs as P, as otherwise it will too likely be regrown too fast.
865 */
Manuel Pégourié-Gonnard26bc1c02013-12-30 19:33:33 +0100866 MPI_CHK( mpi_shrink( &T[i]->X, grp->P.n ) );
867 MPI_CHK( mpi_shrink( &T[i]->Y, grp->P.n ) );
Manuel Pégourié-Gonnard1f789b82013-12-30 17:31:56 +0100868 mpi_free( &T[i]->Z );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100869
870 if( i == 0 )
871 break;
872 }
873
874cleanup:
875
876 mpi_free( &u ); mpi_free( &Zi ); mpi_free( &ZZi );
877 for( i = 0; i < t_len; i++ )
878 mpi_free( &c[i] );
Paul Bakker6e339b52013-07-03 13:37:05 +0200879 polarssl_free( c );
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100880
881 return( ret );
882}
883
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100884/*
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +0100885 * Conditional point inversion: Q -> -Q = (Q.X, -Q.Y, Q.Z) without leak.
886 * "inv" must be 0 (don't invert) or 1 (invert) or the result will be invalid
887 */
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +0100888static int ecp_safe_invert_jac( const ecp_group *grp,
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +0100889 ecp_point *Q,
890 unsigned char inv )
891{
892 int ret;
893 unsigned char nonzero;
894 mpi mQY;
895
896 mpi_init( &mQY );
897
898 /* Use the fact that -Q.Y mod P = P - Q.Y unless Q.Y == 0 */
899 MPI_CHK( mpi_sub_mpi( &mQY, &grp->P, &Q->Y ) );
900 nonzero = mpi_cmp_int( &Q->Y, 0 ) != 0;
901 MPI_CHK( mpi_safe_cond_assign( &Q->Y, &mQY, inv & nonzero ) );
902
903cleanup:
904 mpi_free( &mQY );
905
906 return( ret );
907}
908
909/*
Manuel Pégourié-Gonnard0cd6f982013-10-10 15:55:39 +0200910 * Point doubling R = 2 P, Jacobian coordinates
Manuel Pégourié-Gonnard0ace4b32013-10-10 12:44:27 +0200911 *
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +0200912 * http://www.hyperelliptic.org/EFD/g1p/auto-code/shortw/jacobian/doubling/dbl-2007-bl.op3
Manuel Pégourié-Gonnard0ace4b32013-10-10 12:44:27 +0200913 * with heavy variable renaming, some reordering and one minor modification
914 * (a = 2 * b, c = d - 2a replaced with c = d, c = c - b, c = c - b)
915 * in order to use a lot less intermediate variables (6 vs 25).
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +0100916 *
917 * Cost: 1D := 2M + 8S
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +0200918 */
Manuel Pégourié-Gonnard0cd6f982013-10-10 15:55:39 +0200919static int ecp_double_jac( const ecp_group *grp, ecp_point *R,
920 const ecp_point *P )
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +0200921{
922 int ret;
Manuel Pégourié-Gonnard0ace4b32013-10-10 12:44:27 +0200923 mpi T1, T2, T3, X3, Y3, Z3;
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +0200924
Manuel Pégourié-Gonnard0cd6f982013-10-10 15:55:39 +0200925#if defined(POLARSSL_SELF_TEST)
926 dbl_count++;
927#endif
928
Manuel Pégourié-Gonnard0ace4b32013-10-10 12:44:27 +0200929 mpi_init( &T1 ); mpi_init( &T2 ); mpi_init( &T3 );
930 mpi_init( &X3 ); mpi_init( &Y3 ); mpi_init( &Z3 );
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +0200931
Manuel Pégourié-Gonnard0ace4b32013-10-10 12:44:27 +0200932 MPI_CHK( mpi_mul_mpi( &T3, &P->X, &P->X ) ); MOD_MUL( T3 );
933 MPI_CHK( mpi_mul_mpi( &T2, &P->Y, &P->Y ) ); MOD_MUL( T2 );
934 MPI_CHK( mpi_mul_mpi( &Y3, &T2, &T2 ) ); MOD_MUL( Y3 );
935 MPI_CHK( mpi_add_mpi( &X3, &P->X, &T2 ) ); MOD_ADD( X3 );
936 MPI_CHK( mpi_mul_mpi( &X3, &X3, &X3 ) ); MOD_MUL( X3 );
937 MPI_CHK( mpi_sub_mpi( &X3, &X3, &Y3 ) ); MOD_SUB( X3 );
938 MPI_CHK( mpi_sub_mpi( &X3, &X3, &T3 ) ); MOD_SUB( X3 );
939 MPI_CHK( mpi_mul_int( &T1, &X3, 2 ) ); MOD_ADD( T1 );
940 MPI_CHK( mpi_mul_mpi( &Z3, &P->Z, &P->Z ) ); MOD_MUL( Z3 );
941 MPI_CHK( mpi_mul_mpi( &X3, &Z3, &Z3 ) ); MOD_MUL( X3 );
942 MPI_CHK( mpi_mul_int( &T3, &T3, 3 ) ); MOD_ADD( T3 );
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +0100943
944 /* Special case for A = -3 */
945 if( grp->A.p == NULL )
946 {
947 MPI_CHK( mpi_mul_int( &X3, &X3, 3 ) );
948 X3.s = -1; /* mpi_mul_int doesn't handle negative numbers */
949 MOD_SUB( X3 );
950 }
951 else
Peter Vaskovica676acf2014-08-06 00:48:39 +0200952 {
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +0100953 MPI_CHK( mpi_mul_mpi( &X3, &X3, &grp->A ) ); MOD_MUL( X3 );
Peter Vaskovica676acf2014-08-06 00:48:39 +0200954 }
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +0100955
Manuel Pégourié-Gonnard0ace4b32013-10-10 12:44:27 +0200956 MPI_CHK( mpi_add_mpi( &T3, &T3, &X3 ) ); MOD_ADD( T3 );
957 MPI_CHK( mpi_mul_mpi( &X3, &T3, &T3 ) ); MOD_MUL( X3 );
958 MPI_CHK( mpi_sub_mpi( &X3, &X3, &T1 ) ); MOD_SUB( X3 );
959 MPI_CHK( mpi_sub_mpi( &X3, &X3, &T1 ) ); MOD_SUB( X3 );
960 MPI_CHK( mpi_sub_mpi( &T1, &T1, &X3 ) ); MOD_SUB( T1 );
961 MPI_CHK( mpi_mul_mpi( &T1, &T3, &T1 ) ); MOD_MUL( T1 );
962 MPI_CHK( mpi_mul_int( &T3, &Y3, 8 ) ); MOD_ADD( T3 );
963 MPI_CHK( mpi_sub_mpi( &Y3, &T1, &T3 ) ); MOD_SUB( Y3 );
964 MPI_CHK( mpi_add_mpi( &T1, &P->Y, &P->Z ) ); MOD_ADD( T1 );
965 MPI_CHK( mpi_mul_mpi( &T1, &T1, &T1 ) ); MOD_MUL( T1 );
966 MPI_CHK( mpi_sub_mpi( &T1, &T1, &T2 ) ); MOD_SUB( T1 );
967 MPI_CHK( mpi_sub_mpi( &Z3, &T1, &Z3 ) ); MOD_SUB( Z3 );
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +0200968
969 MPI_CHK( mpi_copy( &R->X, &X3 ) );
970 MPI_CHK( mpi_copy( &R->Y, &Y3 ) );
971 MPI_CHK( mpi_copy( &R->Z, &Z3 ) );
972
973cleanup:
Manuel Pégourié-Gonnard0ace4b32013-10-10 12:44:27 +0200974 mpi_free( &T1 ); mpi_free( &T2 ); mpi_free( &T3 );
975 mpi_free( &X3 ); mpi_free( &Y3 ); mpi_free( &Z3 );
Manuel Pégourié-Gonnard1c4aa242013-10-09 16:09:46 +0200976
977 return( ret );
978}
979
980/*
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +0100981 * Addition: R = P + Q, mixed affine-Jacobian coordinates (GECC 3.22)
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100982 *
983 * The coordinates of Q must be normalized (= affine),
984 * but those of P don't need to. R is not normalized.
985 *
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +0100986 * Special cases: (1) P or Q is zero, (2) R is zero, (3) P == Q.
Manuel Pégourié-Gonnard7a949d32013-12-05 10:26:01 +0100987 * None of these cases can happen as intermediate step in ecp_mul_comb():
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +0100988 * - at each step, P, Q and R are multiples of the base point, the factor
989 * being less than its order, so none of them is zero;
990 * - Q is an odd multiple of the base point, P an even multiple,
991 * due to the choice of precomputed points in the modified comb method.
992 * So branches for these cases do not leak secret information.
993 *
Manuel Pégourié-Gonnard72c172a2013-12-30 16:04:55 +0100994 * We accept Q->Z being unset (saving memory in tables) as meaning 1.
995 *
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +0100996 * Cost: 1A := 8M + 3S
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100997 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100998static int ecp_add_mixed( const ecp_group *grp, ecp_point *R,
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +0100999 const ecp_point *P, const ecp_point *Q )
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001000{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001001 int ret;
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001002 mpi T1, T2, T3, T4, X, Y, Z;
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001003
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001004#if defined(POLARSSL_SELF_TEST)
1005 add_count++;
1006#endif
1007
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001008 /*
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001009 * Trivial cases: P == 0 or Q == 0 (case 1)
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001010 */
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001011 if( mpi_cmp_int( &P->Z, 0 ) == 0 )
1012 return( ecp_copy( R, Q ) );
1013
Manuel Pégourié-Gonnard72c172a2013-12-30 16:04:55 +01001014 if( Q->Z.p != NULL && mpi_cmp_int( &Q->Z, 0 ) == 0 )
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +01001015 return( ecp_copy( R, P ) );
1016
1017 /*
1018 * Make sure Q coordinates are normalized
1019 */
Manuel Pégourié-Gonnard72c172a2013-12-30 16:04:55 +01001020 if( Q->Z.p != NULL && mpi_cmp_int( &Q->Z, 1 ) != 0 )
Manuel Pégourié-Gonnard456d3b92013-09-16 18:04:38 +02001021 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001022
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001023 mpi_init( &T1 ); mpi_init( &T2 ); mpi_init( &T3 ); mpi_init( &T4 );
1024 mpi_init( &X ); mpi_init( &Y ); mpi_init( &Z );
Manuel Pégourié-Gonnardab38b702012-11-05 17:34:55 +01001025
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001026 MPI_CHK( mpi_mul_mpi( &T1, &P->Z, &P->Z ) ); MOD_MUL( T1 );
1027 MPI_CHK( mpi_mul_mpi( &T2, &T1, &P->Z ) ); MOD_MUL( T2 );
1028 MPI_CHK( mpi_mul_mpi( &T1, &T1, &Q->X ) ); MOD_MUL( T1 );
1029 MPI_CHK( mpi_mul_mpi( &T2, &T2, &Q->Y ) ); MOD_MUL( T2 );
1030 MPI_CHK( mpi_sub_mpi( &T1, &T1, &P->X ) ); MOD_SUB( T1 );
1031 MPI_CHK( mpi_sub_mpi( &T2, &T2, &P->Y ) ); MOD_SUB( T2 );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001032
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001033 /* Special cases (2) and (3) */
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001034 if( mpi_cmp_int( &T1, 0 ) == 0 )
1035 {
1036 if( mpi_cmp_int( &T2, 0 ) == 0 )
1037 {
1038 ret = ecp_double_jac( grp, R, P );
1039 goto cleanup;
1040 }
1041 else
1042 {
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +01001043 ret = ecp_set_zero( R );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001044 goto cleanup;
1045 }
1046 }
1047
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001048 MPI_CHK( mpi_mul_mpi( &Z, &P->Z, &T1 ) ); MOD_MUL( Z );
1049 MPI_CHK( mpi_mul_mpi( &T3, &T1, &T1 ) ); MOD_MUL( T3 );
1050 MPI_CHK( mpi_mul_mpi( &T4, &T3, &T1 ) ); MOD_MUL( T4 );
1051 MPI_CHK( mpi_mul_mpi( &T3, &T3, &P->X ) ); MOD_MUL( T3 );
1052 MPI_CHK( mpi_mul_int( &T1, &T3, 2 ) ); MOD_ADD( T1 );
1053 MPI_CHK( mpi_mul_mpi( &X, &T2, &T2 ) ); MOD_MUL( X );
1054 MPI_CHK( mpi_sub_mpi( &X, &X, &T1 ) ); MOD_SUB( X );
1055 MPI_CHK( mpi_sub_mpi( &X, &X, &T4 ) ); MOD_SUB( X );
1056 MPI_CHK( mpi_sub_mpi( &T3, &T3, &X ) ); MOD_SUB( T3 );
1057 MPI_CHK( mpi_mul_mpi( &T3, &T3, &T2 ) ); MOD_MUL( T3 );
1058 MPI_CHK( mpi_mul_mpi( &T4, &T4, &P->Y ) ); MOD_MUL( T4 );
1059 MPI_CHK( mpi_sub_mpi( &Y, &T3, &T4 ) ); MOD_SUB( Y );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001060
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +01001061 MPI_CHK( mpi_copy( &R->X, &X ) );
1062 MPI_CHK( mpi_copy( &R->Y, &Y ) );
1063 MPI_CHK( mpi_copy( &R->Z, &Z ) );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001064
1065cleanup:
1066
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001067 mpi_free( &T1 ); mpi_free( &T2 ); mpi_free( &T3 ); mpi_free( &T4 );
1068 mpi_free( &X ); mpi_free( &Y ); mpi_free( &Z );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001069
1070 return( ret );
1071}
1072
1073/*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +01001074 * Addition: R = P + Q, result's coordinates normalized
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001075 */
1076int ecp_add( const ecp_group *grp, ecp_point *R,
1077 const ecp_point *P, const ecp_point *Q )
1078{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001079 int ret;
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +01001080
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001081 if( ecp_get_type( grp ) != POLARSSL_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnard97871ef2013-12-04 20:52:04 +01001082 return( POLARSSL_ERR_ECP_FEATURE_UNAVAILABLE );
1083
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001084 MPI_CHK( ecp_add_mixed( grp, R, P, Q ) );
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +01001085 MPI_CHK( ecp_normalize_jac( grp, R ) );
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +01001086
1087cleanup:
1088 return( ret );
1089}
1090
1091/*
1092 * Subtraction: R = P - Q, result's coordinates normalized
1093 */
1094int ecp_sub( const ecp_group *grp, ecp_point *R,
1095 const ecp_point *P, const ecp_point *Q )
1096{
1097 int ret;
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001098 ecp_point mQ;
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +01001099
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001100 ecp_point_init( &mQ );
1101
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001102 if( ecp_get_type( grp ) != POLARSSL_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnard97871ef2013-12-04 20:52:04 +01001103 return( POLARSSL_ERR_ECP_FEATURE_UNAVAILABLE );
1104
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001105 /* mQ = - Q */
Manuel Pégourié-Gonnard26bc1c02013-12-30 19:33:33 +01001106 MPI_CHK( ecp_copy( &mQ, Q ) );
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001107 if( mpi_cmp_int( &mQ.Y, 0 ) != 0 )
1108 MPI_CHK( mpi_sub_mpi( &mQ.Y, &grp->P, &mQ.Y ) );
1109
1110 MPI_CHK( ecp_add_mixed( grp, R, P, &mQ ) );
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +01001111 MPI_CHK( ecp_normalize_jac( grp, R ) );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001112
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +01001113cleanup:
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001114 ecp_point_free( &mQ );
1115
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +01001116 return( ret );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +01001117}
1118
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001119/*
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001120 * Randomize jacobian coordinates:
1121 * (X, Y, Z) -> (l^2 X, l^3 Y, l Z) for random l
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +01001122 * This is sort of the reverse operation of ecp_normalize_jac().
Manuel Pégourié-Gonnard44aab792013-11-21 10:53:59 +01001123 *
1124 * This countermeasure was first suggested in [2].
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001125 */
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01001126static int ecp_randomize_jac( const ecp_group *grp, ecp_point *pt,
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001127 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
1128{
1129 int ret;
1130 mpi l, ll;
Paul Bakker66d5d072014-06-17 16:39:18 +02001131 size_t p_size = ( grp->pbits + 7 ) / 8;
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001132 int count = 0;
1133
1134 mpi_init( &l ); mpi_init( &ll );
1135
1136 /* Generate l such that 1 < l < p */
1137 do
1138 {
1139 mpi_fill_random( &l, p_size, f_rng, p_rng );
1140
1141 while( mpi_cmp_mpi( &l, &grp->P ) >= 0 )
Paul Bakker3d8fb632014-04-17 12:42:41 +02001142 MPI_CHK( mpi_shift_r( &l, 1 ) );
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001143
1144 if( count++ > 10 )
Manuel Pégourié-Gonnard456d3b92013-09-16 18:04:38 +02001145 return( POLARSSL_ERR_ECP_RANDOM_FAILED );
Manuel Pégourié-Gonnard07de4b12013-09-02 16:26:04 +02001146 }
1147 while( mpi_cmp_int( &l, 1 ) <= 0 );
1148
1149 /* Z = l * Z */
1150 MPI_CHK( mpi_mul_mpi( &pt->Z, &pt->Z, &l ) ); MOD_MUL( pt->Z );
1151
1152 /* X = l^2 * X */
1153 MPI_CHK( mpi_mul_mpi( &ll, &l, &l ) ); MOD_MUL( ll );
1154 MPI_CHK( mpi_mul_mpi( &pt->X, &pt->X, &ll ) ); MOD_MUL( pt->X );
1155
1156 /* Y = l^3 * Y */
1157 MPI_CHK( mpi_mul_mpi( &ll, &ll, &l ) ); MOD_MUL( ll );
1158 MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &ll ) ); MOD_MUL( pt->Y );
1159
1160cleanup:
1161 mpi_free( &l ); mpi_free( &ll );
1162
1163 return( ret );
1164}
1165
1166/*
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001167 * Check and define parameters used by the comb method (see below for details)
1168 */
1169#if POLARSSL_ECP_WINDOW_SIZE < 2 || POLARSSL_ECP_WINDOW_SIZE > 7
1170#error "POLARSSL_ECP_WINDOW_SIZE out of bounds"
1171#endif
1172
1173/* d = ceil( n / w ) */
1174#define COMB_MAX_D ( POLARSSL_ECP_MAX_BITS + 1 ) / 2
1175
1176/* number of precomputed points */
1177#define COMB_MAX_PRE ( 1 << ( POLARSSL_ECP_WINDOW_SIZE - 1 ) )
1178
1179/*
1180 * Compute the representation of m that will be used with our comb method.
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001181 *
1182 * The basic comb method is described in GECC 3.44 for example. We use a
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001183 * modified version that provides resistance to SPA by avoiding zero
1184 * digits in the representation as in [3]. We modify the method further by
1185 * requiring that all K_i be odd, which has the small cost that our
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001186 * representation uses one more K_i, due to carries.
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001187 *
1188 * Also, for the sake of compactness, only the seven low-order bits of x[i]
1189 * are used to represent K_i, and the msb of x[i] encodes the the sign (s_i in
1190 * the paper): it is set if and only if if s_i == -1;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001191 *
1192 * Calling conventions:
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001193 * - x is an array of size d + 1
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001194 * - w is the size, ie number of teeth, of the comb, and must be between
1195 * 2 and 7 (in practice, between 2 and POLARSSL_ECP_WINDOW_SIZE)
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001196 * - m is the MPI, expected to be odd and such that bitlength(m) <= w * d
1197 * (the result will be incorrect if these assumptions are not satisfied)
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001198 */
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001199static void ecp_comb_fixed( unsigned char x[], size_t d,
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001200 unsigned char w, const mpi *m )
1201{
1202 size_t i, j;
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001203 unsigned char c, cc, adjust;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001204
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001205 memset( x, 0, d+1 );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001206
Manuel Pégourié-Gonnardedc1a1f2013-11-21 09:50:00 +01001207 /* First get the classical comb values (except for x_d = 0) */
1208 for( i = 0; i < d; i++ )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001209 for( j = 0; j < w; j++ )
1210 x[i] |= mpi_get_bit( m, i + d * j ) << j;
1211
Manuel Pégourié-Gonnardedc1a1f2013-11-21 09:50:00 +01001212 /* Now make sure x_1 .. x_d are odd */
1213 c = 0;
1214 for( i = 1; i <= d; i++ )
1215 {
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001216 /* Add carry and update it */
1217 cc = x[i] & c;
1218 x[i] = x[i] ^ c;
1219 c = cc;
1220
Manuel Pégourié-Gonnardedc1a1f2013-11-21 09:50:00 +01001221 /* Adjust if needed, avoiding branches */
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001222 adjust = 1 - ( x[i] & 0x01 );
1223 c |= x[i] & ( x[i-1] * adjust );
1224 x[i] = x[i] ^ ( x[i-1] * adjust );
1225 x[i-1] |= adjust << 7;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001226 }
1227}
1228
1229/*
1230 * Precompute points for the comb method
1231 *
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001232 * If i = i_{w-1} ... i_1 is the binary representation of i, then
1233 * T[i] = i_{w-1} 2^{(w-1)d} P + ... + i_1 2^d P + P
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001234 *
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001235 * T must be able to hold 2^{w - 1} elements
1236 *
1237 * Cost: d(w-1) D + (2^{w-1} - 1) A + 1 N(w-1) + 1 N(2^{w-1} - 1)
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001238 */
1239static int ecp_precompute_comb( const ecp_group *grp,
1240 ecp_point T[], const ecp_point *P,
1241 unsigned char w, size_t d )
1242{
1243 int ret;
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001244 unsigned char i, k;
1245 size_t j;
1246 ecp_point *cur, *TT[COMB_MAX_PRE - 1];
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001247
1248 /*
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001249 * Set T[0] = P and
1250 * T[2^{l-1}] = 2^{dl} P for l = 1 .. w-1 (this is not the final value)
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001251 */
1252 MPI_CHK( ecp_copy( &T[0], P ) );
1253
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001254 k = 0;
Paul Bakker66d5d072014-06-17 16:39:18 +02001255 for( i = 1; i < ( 1U << ( w - 1 ) ); i <<= 1 )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001256 {
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001257 cur = T + i;
1258 MPI_CHK( ecp_copy( cur, T + ( i >> 1 ) ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001259 for( j = 0; j < d; j++ )
1260 MPI_CHK( ecp_double_jac( grp, cur, cur ) );
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001261
1262 TT[k++] = cur;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001263 }
1264
Manuel Pégourié-Gonnard26bc1c02013-12-30 19:33:33 +01001265 MPI_CHK( ecp_normalize_jac_many( grp, TT, k ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001266
1267 /*
1268 * Compute the remaining ones using the minimal number of additions
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001269 * Be careful to update T[2^l] only after using it!
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001270 */
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001271 k = 0;
Paul Bakker66d5d072014-06-17 16:39:18 +02001272 for( i = 1; i < ( 1U << ( w - 1 ) ); i <<= 1 )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001273 {
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001274 j = i;
1275 while( j-- )
1276 {
Manuel Pégourié-Gonnard26bc1c02013-12-30 19:33:33 +01001277 MPI_CHK( ecp_add_mixed( grp, &T[i + j], &T[j], &T[i] ) );
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001278 TT[k++] = &T[i + j];
1279 }
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001280 }
1281
Manuel Pégourié-Gonnard26bc1c02013-12-30 19:33:33 +01001282 MPI_CHK( ecp_normalize_jac_many( grp, TT, k ) );
Manuel Pégourié-Gonnarde2820122013-11-21 10:08:50 +01001283
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001284cleanup:
1285 return( ret );
1286}
1287
1288/*
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001289 * Select precomputed point: R = sign(i) * T[ abs(i) / 2 ]
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001290 */
1291static int ecp_select_comb( const ecp_group *grp, ecp_point *R,
Manuel Pégourié-Gonnard96c7a922013-11-25 18:28:53 +01001292 const ecp_point T[], unsigned char t_len,
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001293 unsigned char i )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001294{
1295 int ret;
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001296 unsigned char ii, j;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001297
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001298 /* Ignore the "sign" bit and scale down */
1299 ii = ( i & 0x7Fu ) >> 1;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001300
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001301 /* Read the whole table to thwart cache-based timing attacks */
1302 for( j = 0; j < t_len; j++ )
1303 {
1304 MPI_CHK( mpi_safe_cond_assign( &R->X, &T[j].X, j == ii ) );
1305 MPI_CHK( mpi_safe_cond_assign( &R->Y, &T[j].Y, j == ii ) );
1306 }
1307
Manuel Pégourié-Gonnard01fca5e2013-11-21 17:47:12 +01001308 /* Safely invert result if i is "negative" */
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +01001309 MPI_CHK( ecp_safe_invert_jac( grp, R, i >> 7 ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001310
1311cleanup:
1312 return( ret );
1313}
1314
1315/*
1316 * Core multiplication algorithm for the (modified) comb method.
1317 * This part is actually common with the basic comb method (GECC 3.44)
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001318 *
1319 * Cost: d A + d D + 1 R
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001320 */
1321static int ecp_mul_comb_core( const ecp_group *grp, ecp_point *R,
Manuel Pégourié-Gonnard96c7a922013-11-25 18:28:53 +01001322 const ecp_point T[], unsigned char t_len,
Manuel Pégourié-Gonnard70c14372013-11-20 20:07:26 +01001323 const unsigned char x[], size_t d,
1324 int (*f_rng)(void *, unsigned char *, size_t),
1325 void *p_rng )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001326{
1327 int ret;
1328 ecp_point Txi;
1329 size_t i;
1330
1331 ecp_point_init( &Txi );
1332
Manuel Pégourié-Gonnard70c14372013-11-20 20:07:26 +01001333 /* Start with a non-zero point and randomize its coordinates */
Manuel Pégourié-Gonnard101a39f2013-11-20 14:47:19 +01001334 i = d;
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001335 MPI_CHK( ecp_select_comb( grp, R, T, t_len, x[i] ) );
Manuel Pégourié-Gonnard72c172a2013-12-30 16:04:55 +01001336 MPI_CHK( mpi_lset( &R->Z, 1 ) );
Manuel Pégourié-Gonnard70c14372013-11-20 20:07:26 +01001337 if( f_rng != 0 )
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01001338 MPI_CHK( ecp_randomize_jac( grp, R, f_rng, p_rng ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001339
1340 while( i-- != 0 )
1341 {
1342 MPI_CHK( ecp_double_jac( grp, R, R ) );
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001343 MPI_CHK( ecp_select_comb( grp, &Txi, T, t_len, x[i] ) );
Manuel Pégourié-Gonnard469a2092013-11-21 18:20:43 +01001344 MPI_CHK( ecp_add_mixed( grp, R, R, &Txi ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001345 }
1346
1347cleanup:
1348 ecp_point_free( &Txi );
1349
1350 return( ret );
1351}
1352
1353/*
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001354 * Multiplication using the comb method,
1355 * for curves in short Weierstrass form
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001356 */
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001357static int ecp_mul_comb( ecp_group *grp, ecp_point *R,
1358 const mpi *m, const ecp_point *P,
1359 int (*f_rng)(void *, unsigned char *, size_t),
1360 void *p_rng )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001361{
1362 int ret;
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001363 unsigned char w, m_is_odd, p_eq_g, pre_len, i;
1364 size_t d;
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001365 unsigned char k[COMB_MAX_D + 1];
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001366 ecp_point *T;
1367 mpi M, mm;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001368
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001369 mpi_init( &M );
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001370 mpi_init( &mm );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001371
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001372 /* we need N to be odd to trnaform m in an odd number, check now */
1373 if( mpi_get_bit( &grp->N, 0 ) != 1 )
1374 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
1375
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001376 /*
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001377 * Minimize the number of multiplications, that is minimize
Manuel Pégourié-Gonnard36daa132013-11-21 18:33:36 +01001378 * 10 * d * w + 18 * 2^(w-1) + 11 * d + 7 * w, with d = ceil( nbits / w )
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001379 * (see costs of the various parts, with 1S = 1M)
1380 */
1381 w = grp->nbits >= 384 ? 5 : 4;
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001382
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001383 /*
1384 * If P == G, pre-compute a bit more, since this may be re-used later.
Manuel Pégourié-Gonnard9e4191c2013-12-30 18:41:16 +01001385 * Just adding one avoids upping the cost of the first mul too much,
1386 * and the memory cost too.
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001387 */
Manuel Pégourié-Gonnard9e4191c2013-12-30 18:41:16 +01001388#if POLARSSL_ECP_FIXED_POINT_OPTIM == 1
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001389 p_eq_g = ( mpi_cmp_mpi( &P->Y, &grp->G.Y ) == 0 &&
1390 mpi_cmp_mpi( &P->X, &grp->G.X ) == 0 );
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001391 if( p_eq_g )
1392 w++;
Manuel Pégourié-Gonnard9e4191c2013-12-30 18:41:16 +01001393#else
1394 p_eq_g = 0;
1395#endif
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001396
1397 /*
Manuel Pégourié-Gonnard36daa132013-11-21 18:33:36 +01001398 * Make sure w is within bounds.
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001399 * (The last test is useful only for very small curves in the test suite.)
1400 */
1401 if( w > POLARSSL_ECP_WINDOW_SIZE )
1402 w = POLARSSL_ECP_WINDOW_SIZE;
Manuel Pégourié-Gonnard36daa132013-11-21 18:33:36 +01001403 if( w >= grp->nbits )
Manuel Pégourié-Gonnard04a02252013-11-20 22:57:38 +01001404 w = 2;
1405
1406 /* Other sizes that depend on w */
Manuel Pégourié-Gonnardc30200e2013-11-20 18:39:55 +01001407 pre_len = 1U << ( w - 1 );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001408 d = ( grp->nbits + w - 1 ) / w;
1409
1410 /*
1411 * Prepare precomputed points: if P == G we want to
Manuel Pégourié-Gonnardedc1a1f2013-11-21 09:50:00 +01001412 * use grp->T if already initialized, or initialize it.
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001413 */
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001414 T = p_eq_g ? grp->T : NULL;
Manuel Pégourié-Gonnardedc1a1f2013-11-21 09:50:00 +01001415
1416 if( T == NULL )
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001417 {
1418 T = (ecp_point *) polarssl_malloc( pre_len * sizeof( ecp_point ) );
1419 if( T == NULL )
1420 {
1421 ret = POLARSSL_ERR_ECP_MALLOC_FAILED;
1422 goto cleanup;
1423 }
1424
1425 for( i = 0; i < pre_len; i++ )
1426 ecp_point_init( &T[i] );
1427
1428 MPI_CHK( ecp_precompute_comb( grp, T, P, w, d ) );
1429
1430 if( p_eq_g )
1431 {
1432 grp->T = T;
1433 grp->T_size = pre_len;
1434 }
1435 }
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001436
1437 /*
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001438 * Make sure M is odd (M = m or M = N - m, since N is odd)
1439 * using the fact that m * P = - (N - m) * P
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001440 */
1441 m_is_odd = ( mpi_get_bit( m, 0 ) == 1 );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001442 MPI_CHK( mpi_copy( &M, m ) );
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001443 MPI_CHK( mpi_sub_mpi( &mm, &grp->N, m ) );
1444 MPI_CHK( mpi_safe_cond_assign( &M, &mm, ! m_is_odd ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001445
1446 /*
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001447 * Go for comb multiplication, R = M * P
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001448 */
1449 ecp_comb_fixed( k, d, w, &M );
Manuel Pégourié-Gonnardd7283502013-11-21 20:00:38 +01001450 MPI_CHK( ecp_mul_comb_core( grp, R, T, pre_len, k, d, f_rng, p_rng ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001451
1452 /*
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001453 * Now get m * P from M * P and normalize it
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001454 */
Manuel Pégourié-Gonnard3c0b4ea2013-12-02 19:44:41 +01001455 MPI_CHK( ecp_safe_invert_jac( grp, R, ! m_is_odd ) );
1456 MPI_CHK( ecp_normalize_jac( grp, R ) );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001457
1458cleanup:
1459
1460 if( T != NULL && ! p_eq_g )
1461 {
1462 for( i = 0; i < pre_len; i++ )
1463 ecp_point_free( &T[i] );
1464 polarssl_free( T );
1465 }
1466
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001467 mpi_free( &M );
Manuel Pégourié-Gonnardaade42f2013-11-21 19:19:54 +01001468 mpi_free( &mm );
1469
1470 if( ret != 0 )
1471 ecp_point_free( R );
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001472
1473 return( ret );
1474}
1475
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001476#endif /* POLARSSL_ECP_SHORT_WEIERSTRASS */
1477
1478#if defined(POLARSSL_ECP_MONTGOMERY)
1479/*
1480 * For Montgomery curves, we do all the internal arithmetic in projective
1481 * coordinates. Import/export of points uses only the x coordinates, which is
1482 * internaly represented as X / Z.
1483 *
1484 * For scalar multiplication, we'll use a Montgomery ladder.
1485 */
1486
Manuel Pégourié-Gonnardd1c1ba92013-11-16 15:50:12 +01001487/*
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001488 * Normalize Montgomery x/z coordinates: X = X/Z, Z = 1
1489 * Cost: 1M + 1I
1490 */
1491static int ecp_normalize_mxz( const ecp_group *grp, ecp_point *P )
1492{
1493 int ret;
1494
1495 MPI_CHK( mpi_inv_mod( &P->Z, &P->Z, &grp->P ) );
1496 MPI_CHK( mpi_mul_mpi( &P->X, &P->X, &P->Z ) ); MOD_MUL( P->X );
1497 MPI_CHK( mpi_lset( &P->Z, 1 ) );
1498
1499cleanup:
1500 return( ret );
1501}
1502
1503/*
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01001504 * Randomize projective x/z coordinates:
1505 * (X, Z) -> (l X, l Z) for random l
1506 * This is sort of the reverse operation of ecp_normalize_mxz().
1507 *
1508 * This countermeasure was first suggested in [2].
1509 * Cost: 2M
1510 */
1511static int ecp_randomize_mxz( const ecp_group *grp, ecp_point *P,
1512 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
1513{
1514 int ret;
1515 mpi l;
Paul Bakker66d5d072014-06-17 16:39:18 +02001516 size_t p_size = ( grp->pbits + 7 ) / 8;
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01001517 int count = 0;
1518
1519 mpi_init( &l );
1520
1521 /* Generate l such that 1 < l < p */
1522 do
1523 {
1524 mpi_fill_random( &l, p_size, f_rng, p_rng );
1525
1526 while( mpi_cmp_mpi( &l, &grp->P ) >= 0 )
Paul Bakker3d8fb632014-04-17 12:42:41 +02001527 MPI_CHK( mpi_shift_r( &l, 1 ) );
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01001528
1529 if( count++ > 10 )
1530 return( POLARSSL_ERR_ECP_RANDOM_FAILED );
1531 }
1532 while( mpi_cmp_int( &l, 1 ) <= 0 );
1533
1534 MPI_CHK( mpi_mul_mpi( &P->X, &P->X, &l ) ); MOD_MUL( P->X );
1535 MPI_CHK( mpi_mul_mpi( &P->Z, &P->Z, &l ) ); MOD_MUL( P->Z );
1536
1537cleanup:
1538 mpi_free( &l );
1539
1540 return( ret );
1541}
1542
1543/*
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001544 * Double-and-add: R = 2P, S = P + Q, with d = X(P - Q),
1545 * for Montgomery curves in x/z coordinates.
1546 *
1547 * http://www.hyperelliptic.org/EFD/g1p/auto-code/montgom/xz/ladder/mladd-1987-m.op3
1548 * with
1549 * d = X1
1550 * P = (X2, Z2)
1551 * Q = (X3, Z3)
1552 * R = (X4, Z4)
1553 * S = (X5, Z5)
1554 * and eliminating temporary variables tO, ..., t4.
1555 *
1556 * Cost: 5M + 4S
1557 */
1558static int ecp_double_add_mxz( const ecp_group *grp,
1559 ecp_point *R, ecp_point *S,
1560 const ecp_point *P, const ecp_point *Q,
1561 const mpi *d )
1562{
1563 int ret;
1564 mpi A, AA, B, BB, E, C, D, DA, CB;
1565
1566 mpi_init( &A ); mpi_init( &AA ); mpi_init( &B );
1567 mpi_init( &BB ); mpi_init( &E ); mpi_init( &C );
1568 mpi_init( &D ); mpi_init( &DA ); mpi_init( &CB );
1569
1570 MPI_CHK( mpi_add_mpi( &A, &P->X, &P->Z ) ); MOD_ADD( A );
1571 MPI_CHK( mpi_mul_mpi( &AA, &A, &A ) ); MOD_MUL( AA );
1572 MPI_CHK( mpi_sub_mpi( &B, &P->X, &P->Z ) ); MOD_SUB( B );
1573 MPI_CHK( mpi_mul_mpi( &BB, &B, &B ) ); MOD_MUL( BB );
1574 MPI_CHK( mpi_sub_mpi( &E, &AA, &BB ) ); MOD_SUB( E );
1575 MPI_CHK( mpi_add_mpi( &C, &Q->X, &Q->Z ) ); MOD_ADD( C );
1576 MPI_CHK( mpi_sub_mpi( &D, &Q->X, &Q->Z ) ); MOD_SUB( D );
1577 MPI_CHK( mpi_mul_mpi( &DA, &D, &A ) ); MOD_MUL( DA );
1578 MPI_CHK( mpi_mul_mpi( &CB, &C, &B ) ); MOD_MUL( CB );
1579 MPI_CHK( mpi_add_mpi( &S->X, &DA, &CB ) ); MOD_MUL( S->X );
1580 MPI_CHK( mpi_mul_mpi( &S->X, &S->X, &S->X ) ); MOD_MUL( S->X );
1581 MPI_CHK( mpi_sub_mpi( &S->Z, &DA, &CB ) ); MOD_SUB( S->Z );
1582 MPI_CHK( mpi_mul_mpi( &S->Z, &S->Z, &S->Z ) ); MOD_MUL( S->Z );
1583 MPI_CHK( mpi_mul_mpi( &S->Z, d, &S->Z ) ); MOD_MUL( S->Z );
1584 MPI_CHK( mpi_mul_mpi( &R->X, &AA, &BB ) ); MOD_MUL( R->X );
1585 MPI_CHK( mpi_mul_mpi( &R->Z, &grp->A, &E ) ); MOD_MUL( R->Z );
1586 MPI_CHK( mpi_add_mpi( &R->Z, &BB, &R->Z ) ); MOD_ADD( R->Z );
1587 MPI_CHK( mpi_mul_mpi( &R->Z, &E, &R->Z ) ); MOD_MUL( R->Z );
1588
1589cleanup:
1590 mpi_free( &A ); mpi_free( &AA ); mpi_free( &B );
1591 mpi_free( &BB ); mpi_free( &E ); mpi_free( &C );
1592 mpi_free( &D ); mpi_free( &DA ); mpi_free( &CB );
1593
1594 return( ret );
1595}
1596
1597/*
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001598 * Multiplication with Montgomery ladder in x/z coordinates,
1599 * for curves in Montgomery form
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001600 */
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001601static int ecp_mul_mxz( ecp_group *grp, ecp_point *R,
1602 const mpi *m, const ecp_point *P,
1603 int (*f_rng)(void *, unsigned char *, size_t),
1604 void *p_rng )
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001605{
1606 int ret;
1607 size_t i;
Manuel Pégourié-Gonnardb6f45a62013-12-04 21:54:36 +01001608 unsigned char b;
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001609 ecp_point RP;
1610 mpi PX;
1611
1612 ecp_point_init( &RP ); mpi_init( &PX );
1613
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01001614 /* Save PX and read from P before writing to R, in case P == R */
Paul Bakker3d8fb632014-04-17 12:42:41 +02001615 MPI_CHK( mpi_copy( &PX, &P->X ) );
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001616 MPI_CHK( ecp_copy( &RP, P ) );
Manuel Pégourié-Gonnard357ff652013-12-04 18:39:17 +01001617
1618 /* Set R to zero in modified x/z coordinates */
1619 MPI_CHK( mpi_lset( &R->X, 1 ) );
1620 MPI_CHK( mpi_lset( &R->Z, 0 ) );
1621 mpi_free( &R->Y );
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001622
Manuel Pégourié-Gonnard93f41db2013-12-05 10:48:42 +01001623 /* RP.X might be sligtly larger than P, so reduce it */
1624 MOD_ADD( RP.X );
1625
Manuel Pégourié-Gonnard3afa07f2013-12-03 13:28:21 +01001626 /* Randomize coordinates of the starting point */
Manuel Pégourié-Gonnard357ff652013-12-04 18:39:17 +01001627 if( f_rng != NULL )
1628 MPI_CHK( ecp_randomize_mxz( grp, &RP, f_rng, p_rng ) );
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001629
Manuel Pégourié-Gonnardb6f45a62013-12-04 21:54:36 +01001630 /* Loop invariant: R = result so far, RP = R + P */
Manuel Pégourié-Gonnard357ff652013-12-04 18:39:17 +01001631 i = mpi_msb( m ); /* one past the (zero-based) most significant bit */
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001632 while( i-- > 0 )
1633 {
Manuel Pégourié-Gonnardb6f45a62013-12-04 21:54:36 +01001634 b = mpi_get_bit( m, i );
1635 /*
1636 * if (b) R = 2R + P else R = 2R,
1637 * which is:
1638 * if (b) double_add( RP, R, RP, R )
1639 * else double_add( R, RP, R, RP )
1640 * but using safe conditional swaps to avoid leaks
1641 */
1642 MPI_CHK( mpi_safe_cond_swap( &R->X, &RP.X, b ) );
1643 MPI_CHK( mpi_safe_cond_swap( &R->Z, &RP.Z, b ) );
1644 MPI_CHK( ecp_double_add_mxz( grp, R, &RP, R, &RP, &PX ) );
1645 MPI_CHK( mpi_safe_cond_swap( &R->X, &RP.X, b ) );
1646 MPI_CHK( mpi_safe_cond_swap( &R->Z, &RP.Z, b ) );
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001647 }
1648
1649 MPI_CHK( ecp_normalize_mxz( grp, R ) );
1650
1651cleanup:
1652 ecp_point_free( &RP ); mpi_free( &PX );
1653
1654 return( ret );
1655}
1656
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001657#endif /* POLARSSL_ECP_MONTGOMERY */
1658
Manuel Pégourié-Gonnardd9ea82e2013-12-03 12:02:28 +01001659/*
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001660 * Multiplication R = m * P
1661 */
1662int ecp_mul( ecp_group *grp, ecp_point *R,
1663 const mpi *m, const ecp_point *P,
1664 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
1665{
1666 int ret;
1667
1668 /* Common sanity checks */
1669 if( mpi_cmp_int( &P->Z, 1 ) != 0 )
1670 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
1671
1672 if( ( ret = ecp_check_privkey( grp, m ) ) != 0 ||
1673 ( ret = ecp_check_pubkey( grp, P ) ) != 0 )
1674 return( ret );
1675
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001676#if defined(POLARSSL_ECP_MONTGOMERY)
1677 if( ecp_get_type( grp ) == POLARSSL_ECP_TYPE_MONTGOMERY )
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001678 return( ecp_mul_mxz( grp, R, m, P, f_rng, p_rng ) );
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001679#endif
1680#if defined(POLARSSL_ECP_SHORT_WEIERSTRASS)
1681 if( ecp_get_type( grp ) == POLARSSL_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001682 return( ecp_mul_comb( grp, R, m, P, f_rng, p_rng ) );
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001683#endif
1684 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001685}
1686
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001687#if defined(POLARSSL_ECP_SHORT_WEIERSTRASS)
Manuel Pégourié-Gonnarda0179b82013-12-04 11:49:20 +01001688/*
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001689 * Check that an affine point is valid as a public key,
1690 * short weierstrass curves (SEC1 3.2.3.1)
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001691 */
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001692static int ecp_check_pubkey_sw( const ecp_group *grp, const ecp_point *pt )
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001693{
1694 int ret;
1695 mpi YY, RHS;
1696
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01001697 /* pt coordinates must be normalized for our checks */
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001698 if( mpi_cmp_int( &pt->X, 0 ) < 0 ||
1699 mpi_cmp_int( &pt->Y, 0 ) < 0 ||
1700 mpi_cmp_mpi( &pt->X, &grp->P ) >= 0 ||
1701 mpi_cmp_mpi( &pt->Y, &grp->P ) >= 0 )
Manuel Pégourié-Gonnard456d3b92013-09-16 18:04:38 +02001702 return( POLARSSL_ERR_ECP_INVALID_KEY );
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001703
1704 mpi_init( &YY ); mpi_init( &RHS );
1705
1706 /*
1707 * YY = Y^2
Manuel Pégourié-Gonnardcd7458a2013-10-08 13:11:30 +02001708 * RHS = X (X^2 + A) + B = X^3 + A X + B
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001709 */
Manuel Pégourié-Gonnardcd7458a2013-10-08 13:11:30 +02001710 MPI_CHK( mpi_mul_mpi( &YY, &pt->Y, &pt->Y ) ); MOD_MUL( YY );
1711 MPI_CHK( mpi_mul_mpi( &RHS, &pt->X, &pt->X ) ); MOD_MUL( RHS );
Manuel Pégourié-Gonnard73cc01d2013-12-06 12:41:30 +01001712
1713 /* Special case for A = -3 */
1714 if( grp->A.p == NULL )
1715 {
1716 MPI_CHK( mpi_sub_int( &RHS, &RHS, 3 ) ); MOD_SUB( RHS );
1717 }
1718 else
1719 {
1720 MPI_CHK( mpi_add_mpi( &RHS, &RHS, &grp->A ) ); MOD_ADD( RHS );
1721 }
1722
Manuel Pégourié-Gonnardcd7458a2013-10-08 13:11:30 +02001723 MPI_CHK( mpi_mul_mpi( &RHS, &RHS, &pt->X ) ); MOD_MUL( RHS );
1724 MPI_CHK( mpi_add_mpi( &RHS, &RHS, &grp->B ) ); MOD_ADD( RHS );
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001725
1726 if( mpi_cmp_mpi( &YY, &RHS ) != 0 )
Manuel Pégourié-Gonnard456d3b92013-09-16 18:04:38 +02001727 ret = POLARSSL_ERR_ECP_INVALID_KEY;
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001728
1729cleanup:
1730
1731 mpi_free( &YY ); mpi_free( &RHS );
1732
1733 return( ret );
1734}
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001735#endif /* POLARSSL_ECP_SHORT_WEIERSTRASS */
1736
1737
1738#if defined(POLARSSL_ECP_MONTGOMERY)
1739/*
1740 * Check validity of a public key for Montgomery curves with x-only schemes
1741 */
1742static int ecp_check_pubkey_mx( const ecp_group *grp, const ecp_point *pt )
1743{
1744 /* [M255 p. 5] Just check X is the correct number of bytes */
1745 if( mpi_size( &pt->X ) > ( grp->nbits + 7 ) / 8 )
1746 return( POLARSSL_ERR_ECP_INVALID_KEY );
1747
1748 return( 0 );
1749}
1750#endif /* POLARSSL_ECP_MONTGOMERY */
1751
1752/*
1753 * Check that a point is valid as a public key
1754 */
1755int ecp_check_pubkey( const ecp_group *grp, const ecp_point *pt )
1756{
1757 /* Must use affine coordinates */
1758 if( mpi_cmp_int( &pt->Z, 1 ) != 0 )
1759 return( POLARSSL_ERR_ECP_INVALID_KEY );
1760
1761#if defined(POLARSSL_ECP_MONTGOMERY)
1762 if( ecp_get_type( grp ) == POLARSSL_ECP_TYPE_MONTGOMERY )
1763 return( ecp_check_pubkey_mx( grp, pt ) );
1764#endif
1765#if defined(POLARSSL_ECP_SHORT_WEIERSTRASS)
1766 if( ecp_get_type( grp ) == POLARSSL_ECP_TYPE_SHORT_WEIERSTRASS )
1767 return( ecp_check_pubkey_sw( grp, pt ) );
1768#endif
1769 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
1770}
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001771
1772/*
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01001773 * Check that an mpi is valid as a private key
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001774 */
Manuel Pégourié-Gonnardde44a4a2013-07-09 16:05:52 +02001775int ecp_check_privkey( const ecp_group *grp, const mpi *d )
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001776{
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001777#if defined(POLARSSL_ECP_MONTGOMERY)
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001778 if( ecp_get_type( grp ) == POLARSSL_ECP_TYPE_MONTGOMERY )
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01001779 {
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001780 /* see [M255] page 5 */
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01001781 if( mpi_get_bit( d, 0 ) != 0 ||
1782 mpi_get_bit( d, 1 ) != 0 ||
1783 mpi_get_bit( d, 2 ) != 0 ||
1784 mpi_msb( d ) - 1 != grp->nbits ) /* mpi_msb is one-based! */
1785 return( POLARSSL_ERR_ECP_INVALID_KEY );
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001786 else
1787 return( 0 );
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01001788 }
Paul Bakker9af723c2014-05-01 13:03:14 +02001789#endif /* POLARSSL_ECP_MONTGOMERY */
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001790#if defined(POLARSSL_ECP_SHORT_WEIERSTRASS)
1791 if( ecp_get_type( grp ) == POLARSSL_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01001792 {
1793 /* see SEC1 3.2 */
1794 if( mpi_cmp_int( d, 1 ) < 0 ||
1795 mpi_cmp_mpi( d, &grp->N ) >= 0 )
1796 return( POLARSSL_ERR_ECP_INVALID_KEY );
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001797 else
1798 return( 0 );
Manuel Pégourié-Gonnard312d2e82013-12-04 11:08:01 +01001799 }
Paul Bakker9af723c2014-05-01 13:03:14 +02001800#endif /* POLARSSL_ECP_SHORT_WEIERSTRASS */
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001801
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001802 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnardc8dc2952013-07-01 14:06:13 +02001803}
1804
1805/*
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001806 * Generate a keypair
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001807 */
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02001808int ecp_gen_keypair( ecp_group *grp, mpi *d, ecp_point *Q,
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001809 int (*f_rng)(void *, unsigned char *, size_t),
1810 void *p_rng )
1811{
Manuel Pégourié-Gonnardc9573992014-01-03 12:54:00 +01001812 int ret;
Paul Bakker66d5d072014-06-17 16:39:18 +02001813 size_t n_size = ( grp->nbits + 7 ) / 8;
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001814
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001815#if defined(POLARSSL_ECP_MONTGOMERY)
Manuel Pégourié-Gonnard7c94d8b2013-12-04 23:15:46 +01001816 if( ecp_get_type( grp ) == POLARSSL_ECP_TYPE_MONTGOMERY )
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001817 {
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001818 /* [M225] page 5 */
1819 size_t b;
1820
Manuel Pégourié-Gonnardc9573992014-01-03 12:54:00 +01001821 MPI_CHK( mpi_fill_random( d, n_size, f_rng, p_rng ) );
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001822
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001823 /* Make sure the most significant bit is nbits */
1824 b = mpi_msb( d ) - 1; /* mpi_msb is one-based */
1825 if( b > grp->nbits )
Manuel Pégourié-Gonnardc9573992014-01-03 12:54:00 +01001826 MPI_CHK( mpi_shift_r( d, b - grp->nbits ) );
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001827 else
Manuel Pégourié-Gonnardc9573992014-01-03 12:54:00 +01001828 MPI_CHK( mpi_set_bit( d, grp->nbits, 1 ) );
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001829
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001830 /* Make sure the last three bits are unset */
Manuel Pégourié-Gonnardc9573992014-01-03 12:54:00 +01001831 MPI_CHK( mpi_set_bit( d, 0, 0 ) );
1832 MPI_CHK( mpi_set_bit( d, 1, 0 ) );
1833 MPI_CHK( mpi_set_bit( d, 2, 0 ) );
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001834 }
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001835 else
Paul Bakker9af723c2014-05-01 13:03:14 +02001836#endif /* POLARSSL_ECP_MONTGOMERY */
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001837#if defined(POLARSSL_ECP_SHORT_WEIERSTRASS)
1838 if( ecp_get_type( grp ) == POLARSSL_ECP_TYPE_SHORT_WEIERSTRASS )
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001839 {
1840 /* SEC1 3.2.1: Generate d such that 1 <= n < N */
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001841 int count = 0;
Manuel Pégourié-Gonnard79f73b92014-01-03 12:35:05 +01001842 unsigned char rnd[POLARSSL_ECP_MAX_BYTES];
1843
1844 /*
1845 * Match the procedure given in RFC 6979 (deterministic ECDSA):
1846 * - use the same byte ordering;
1847 * - keep the leftmost nbits bits of the generated octet string;
1848 * - try until result is in the desired range.
1849 * This also avoids any biais, which is especially important for ECDSA.
1850 */
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001851 do
1852 {
Manuel Pégourié-Gonnardc9573992014-01-03 12:54:00 +01001853 MPI_CHK( f_rng( p_rng, rnd, n_size ) );
1854 MPI_CHK( mpi_read_binary( d, rnd, n_size ) );
1855 MPI_CHK( mpi_shift_r( d, 8 * n_size - grp->nbits ) );
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001856
Manuel Pégourié-Gonnard6e8e34d2014-01-28 19:30:56 +01001857 /*
1858 * Each try has at worst a probability 1/2 of failing (the msb has
1859 * a probability 1/2 of being 0, and then the result will be < N),
1860 * so after 30 tries failure probability is a most 2**(-30).
1861 *
1862 * For most curves, 1 try is enough with overwhelming probability,
1863 * since N starts with a lot of 1s in binary, but some curves
1864 * such as secp224k1 are actually very close to the worst case.
1865 */
1866 if( ++count > 30 )
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001867 return( POLARSSL_ERR_ECP_RANDOM_FAILED );
1868 }
Manuel Pégourié-Gonnard79f73b92014-01-03 12:35:05 +01001869 while( mpi_cmp_int( d, 1 ) < 0 ||
1870 mpi_cmp_mpi( d, &grp->N ) >= 0 );
Manuel Pégourié-Gonnardfe0af402013-12-04 18:14:55 +01001871 }
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001872 else
Paul Bakker9af723c2014-05-01 13:03:14 +02001873#endif /* POLARSSL_ECP_SHORT_WEIERSTRASS */
Manuel Pégourié-Gonnardd9622732013-12-05 10:06:06 +01001874 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001875
Manuel Pégourié-Gonnardc9573992014-01-03 12:54:00 +01001876cleanup:
1877 if( ret != 0 )
1878 return( ret );
1879
Manuel Pégourié-Gonnarde09d2f82013-09-02 14:29:09 +02001880 return( ecp_mul( grp, Q, d, &grp->G, f_rng, p_rng ) );
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001881}
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001882
Manuel Pégourié-Gonnard104ee1d2013-11-30 14:13:16 +01001883/*
1884 * Generate a keypair, prettier wrapper
1885 */
1886int ecp_gen_key( ecp_group_id grp_id, ecp_keypair *key,
1887 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
1888{
1889 int ret;
1890
1891 if( ( ret = ecp_use_known_dp( &key->grp, grp_id ) ) != 0 )
1892 return( ret );
1893
1894 return( ecp_gen_keypair( &key->grp, &key->d, &key->Q, f_rng, p_rng ) );
1895}
1896
Manuel Pégourié-Gonnard30668d62014-11-06 15:25:32 +01001897/*
1898 * Check a public-private key pair
1899 */
1900int ecp_check_pub_priv( const ecp_keypair *pub, const ecp_keypair *prv )
1901{
1902 int ret;
1903 ecp_point Q;
1904 ecp_group grp;
1905
1906 if( pub->grp.id == POLARSSL_ECP_DP_NONE ||
1907 pub->grp.id != prv->grp.id ||
1908 mpi_cmp_mpi( &pub->Q.X, &prv->Q.X ) ||
1909 mpi_cmp_mpi( &pub->Q.Y, &prv->Q.Y ) ||
1910 mpi_cmp_mpi( &pub->Q.Z, &prv->Q.Z ) )
1911 {
1912 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
1913 }
1914
1915 ecp_point_init( &Q );
1916 ecp_group_init( &grp );
1917
1918 /* ecp_mul() needs a non-const group... */
1919 ecp_group_copy( &grp, &prv->grp );
1920
1921 /* Also checks d is valid */
1922 MPI_CHK( ecp_mul( &grp, &Q, &prv->d, &prv->grp.G, NULL, NULL ) );
1923
1924 if( mpi_cmp_mpi( &Q.X, &prv->Q.X ) ||
1925 mpi_cmp_mpi( &Q.Y, &prv->Q.Y ) ||
1926 mpi_cmp_mpi( &Q.Z, &prv->Q.Z ) )
1927 {
1928 ret = POLARSSL_ERR_ECP_BAD_INPUT_DATA;
1929 goto cleanup;
1930 }
1931
1932cleanup:
1933 ecp_point_free( &Q );
1934 ecp_group_free( &grp );
1935
1936 return( ret );
1937}
1938
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001939#if defined(POLARSSL_SELF_TEST)
1940
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +01001941/*
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001942 * Checkup routine
1943 */
1944int ecp_self_test( int verbose )
1945{
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001946 int ret;
1947 size_t i;
1948 ecp_group grp;
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02001949 ecp_point R, P;
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001950 mpi m;
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01001951 unsigned long add_c_prev, dbl_c_prev, mul_c_prev;
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02001952 /* exponents especially adapted for secp192r1 */
Paul Bakkerb6c5d2e2013-06-25 16:25:17 +02001953 const char *exponents[] =
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001954 {
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001955 "000000000000000000000000000000000000000000000001", /* one */
Manuel Pégourié-Gonnardff27b7c2013-11-21 09:28:03 +01001956 "FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22830", /* N - 1 */
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001957 "5EA6F389A38B8BC81E767753B15AA5569E1782E30ABE7D25", /* random */
Manuel Pégourié-Gonnardff27b7c2013-11-21 09:28:03 +01001958 "400000000000000000000000000000000000000000000000", /* one and zeros */
1959 "7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", /* all ones */
1960 "555555555555555555555555555555555555555555555555", /* 101010... */
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001961 };
1962
1963 ecp_group_init( &grp );
1964 ecp_point_init( &R );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02001965 ecp_point_init( &P );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001966 mpi_init( &m );
1967
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02001968 /* Use secp192r1 if available, or any available curve */
Paul Bakker5dc6b5f2013-06-29 23:26:34 +02001969#if defined(POLARSSL_ECP_DP_SECP192R1_ENABLED)
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001970 MPI_CHK( ecp_use_known_dp( &grp, POLARSSL_ECP_DP_SECP192R1 ) );
Paul Bakker5dc6b5f2013-06-29 23:26:34 +02001971#else
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02001972 MPI_CHK( ecp_use_known_dp( &grp, ecp_curve_list()->grp_id ) );
1973#endif
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001974
1975 if( verbose != 0 )
Paul Bakker7dc4c442014-02-01 22:50:26 +01001976 polarssl_printf( " ECP test #1 (constant op_count, base point G): " );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02001977
1978 /* Do a dummy multiplication first to trigger precomputation */
1979 MPI_CHK( mpi_lset( &m, 2 ) );
1980 MPI_CHK( ecp_mul( &grp, &P, &m, &grp.G, NULL, NULL ) );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001981
1982 add_count = 0;
1983 dbl_count = 0;
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01001984 mul_count = 0;
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001985 MPI_CHK( mpi_read_string( &m, 16, exponents[0] ) );
Manuel Pégourié-Gonnarde09d2f82013-09-02 14:29:09 +02001986 MPI_CHK( ecp_mul( &grp, &R, &m, &grp.G, NULL, NULL ) );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001987
1988 for( i = 1; i < sizeof( exponents ) / sizeof( exponents[0] ); i++ )
1989 {
1990 add_c_prev = add_count;
1991 dbl_c_prev = dbl_count;
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01001992 mul_c_prev = mul_count;
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001993 add_count = 0;
1994 dbl_count = 0;
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01001995 mul_count = 0;
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001996
1997 MPI_CHK( mpi_read_string( &m, 16, exponents[i] ) );
Manuel Pégourié-Gonnarde09d2f82013-09-02 14:29:09 +02001998 MPI_CHK( ecp_mul( &grp, &R, &m, &grp.G, NULL, NULL ) );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001999
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01002000 if( add_count != add_c_prev ||
2001 dbl_count != dbl_c_prev ||
2002 mul_count != mul_c_prev )
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01002003 {
2004 if( verbose != 0 )
Paul Bakker7dc4c442014-02-01 22:50:26 +01002005 polarssl_printf( "failed (%u)\n", (unsigned int) i );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01002006
2007 ret = 1;
2008 goto cleanup;
2009 }
2010 }
2011
2012 if( verbose != 0 )
Paul Bakker7dc4c442014-02-01 22:50:26 +01002013 polarssl_printf( "passed\n" );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01002014
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002015 if( verbose != 0 )
Paul Bakker7dc4c442014-02-01 22:50:26 +01002016 polarssl_printf( " ECP test #2 (constant op_count, other point): " );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002017 /* We computed P = 2G last time, use it */
2018
2019 add_count = 0;
2020 dbl_count = 0;
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01002021 mul_count = 0;
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002022 MPI_CHK( mpi_read_string( &m, 16, exponents[0] ) );
2023 MPI_CHK( ecp_mul( &grp, &R, &m, &P, NULL, NULL ) );
2024
2025 for( i = 1; i < sizeof( exponents ) / sizeof( exponents[0] ); i++ )
2026 {
2027 add_c_prev = add_count;
2028 dbl_c_prev = dbl_count;
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01002029 mul_c_prev = mul_count;
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002030 add_count = 0;
2031 dbl_count = 0;
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01002032 mul_count = 0;
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002033
2034 MPI_CHK( mpi_read_string( &m, 16, exponents[i] ) );
2035 MPI_CHK( ecp_mul( &grp, &R, &m, &P, NULL, NULL ) );
2036
Manuel Pégourié-Gonnard91814812013-11-21 20:23:55 +01002037 if( add_count != add_c_prev ||
2038 dbl_count != dbl_c_prev ||
2039 mul_count != mul_c_prev )
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002040 {
2041 if( verbose != 0 )
Paul Bakker7dc4c442014-02-01 22:50:26 +01002042 polarssl_printf( "failed (%u)\n", (unsigned int) i );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002043
2044 ret = 1;
2045 goto cleanup;
2046 }
2047 }
2048
2049 if( verbose != 0 )
Paul Bakker7dc4c442014-02-01 22:50:26 +01002050 polarssl_printf( "passed\n" );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002051
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01002052cleanup:
2053
2054 if( ret < 0 && verbose != 0 )
Paul Bakker7dc4c442014-02-01 22:50:26 +01002055 polarssl_printf( "Unexpected error, return code = %08X\n", ret );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01002056
2057 ecp_group_free( &grp );
2058 ecp_point_free( &R );
Manuel Pégourié-Gonnard161ef962013-09-17 19:13:10 +02002059 ecp_point_free( &P );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01002060 mpi_free( &m );
2061
2062 if( verbose != 0 )
Paul Bakker7dc4c442014-02-01 22:50:26 +01002063 polarssl_printf( "\n" );
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01002064
2065 return( ret );
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01002066}
2067
Paul Bakker9af723c2014-05-01 13:03:14 +02002068#endif /* POLARSSL_SELF_TEST */
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01002069
Paul Bakker9af723c2014-05-01 13:03:14 +02002070#endif /* POLARSSL_ECP_C */