blob: 5520d7393b2dbfbae1da9c1d1dcd5ef4edc784c6 [file] [log] [blame]
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001/*
2 * Elliptic curves over GF(p)
3 *
Paul Bakkercf4365f2013-01-16 17:00:43 +01004 * Copyright (C) 2006-2013, Brainspark B.V.
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01005 *
6 * This file is part of PolarSSL (http://www.polarssl.org)
7 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
8 *
9 * All rights reserved.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 */
25
26/*
27 * References:
28 *
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +010029 * SEC1 http://www.secg.org/index.php?action=secg,docs_secg
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +010030 * GECC = Guide to Elliptic Curve Cryptography - Hankerson, Menezes, Vanstone
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +010031 * FIPS 186-3 http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +010032 * RFC 4492 for the related TLS structures and constants
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010033 */
34
35#include "polarssl/config.h"
36
37#if defined(POLARSSL_ECP_C)
38
39#include "polarssl/ecp.h"
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +010040#include <limits.h>
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +010041#include <stdlib.h>
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +010042
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +010043#if defined(POLARSSL_SELF_TEST)
44/*
45 * Counts of point addition and doubling operations.
46 * Used to test resistance of point multiplication to SPA/timing attacks.
47 */
48unsigned long add_count, dbl_count;
49#endif
50
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +010051/*
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +010052 * Initialize (the components of) a point
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +010053 */
54void ecp_point_init( ecp_point *pt )
55{
56 if( pt == NULL )
57 return;
58
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +010059 mpi_init( &pt->X );
60 mpi_init( &pt->Y );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +010061 mpi_init( &pt->Z );
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +010062}
63
64/*
65 * Initialize (the components of) a group
66 */
67void ecp_group_init( ecp_group *grp )
68{
69 if( grp == NULL )
70 return;
71
72 mpi_init( &grp->P );
73 mpi_init( &grp->B );
74 ecp_point_init( &grp->G );
75 mpi_init( &grp->N );
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +010076
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +010077 grp->pbits = 0;
Manuel Pégourié-Gonnard773ed542012-11-18 13:19:07 +010078 grp->nbits = 0;
79
80 grp->modp = NULL;
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +010081}
82
83/*
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +010084 * Unallocate (the components of) a point
85 */
86void ecp_point_free( ecp_point *pt )
87{
88 if( pt == NULL )
89 return;
90
91 mpi_free( &( pt->X ) );
92 mpi_free( &( pt->Y ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +010093 mpi_free( &( pt->Z ) );
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +010094}
95
96/*
97 * Unallocate (the components of) a group
98 */
99void ecp_group_free( ecp_group *grp )
100{
101 if( grp == NULL )
102 return;
103
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +0100104 mpi_free( &grp->P );
105 mpi_free( &grp->B );
106 ecp_point_free( &grp->G );
107 mpi_free( &grp->N );
Manuel Pégourié-Gonnard1e8c8ec2012-10-31 19:24:21 +0100108}
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +0100109
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +0100110/*
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100111 * Set point to zero
112 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100113int ecp_set_zero( ecp_point *pt )
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100114{
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100115 int ret;
116
117 MPI_CHK( mpi_lset( &pt->X , 1 ) );
118 MPI_CHK( mpi_lset( &pt->Y , 1 ) );
119 MPI_CHK( mpi_lset( &pt->Z , 0 ) );
120
121cleanup:
122 return( ret );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100123}
124
125/*
Manuel Pégourié-Gonnard6545ca72013-01-26 16:05:22 +0100126 * Tell if a point is zero
127 */
128int ecp_is_zero( ecp_point *pt )
129{
130 return( mpi_cmp_int( &pt->Z, 0 ) == 0 );
131}
132
133/*
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +0100134 * Copy the contents of Q into P
135 */
136int ecp_copy( ecp_point *P, const ecp_point *Q )
137{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100138 int ret;
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +0100139
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +0100140 MPI_CHK( mpi_copy( &P->X, &Q->X ) );
141 MPI_CHK( mpi_copy( &P->Y, &Q->Y ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100142 MPI_CHK( mpi_copy( &P->Z, &Q->Z ) );
Manuel Pégourié-Gonnard883f3132012-11-02 09:40:25 +0100143
144cleanup:
145 return( ret );
146}
Manuel Pégourié-Gonnard5179e462012-10-31 19:37:54 +0100147
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100148/*
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100149 * Import a non-zero point from ASCII strings
150 */
151int ecp_point_read_string( ecp_point *P, int radix,
152 const char *x, const char *y )
153{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100154 int ret;
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100155
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100156 MPI_CHK( mpi_read_string( &P->X, radix, x ) );
157 MPI_CHK( mpi_read_string( &P->Y, radix, y ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100158 MPI_CHK( mpi_lset( &P->Z, 1 ) );
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100159
160cleanup:
161 return( ret );
162}
163
164/*
165 * Import an ECP group from ASCII strings
166 */
167int ecp_group_read_string( ecp_group *grp, int radix,
168 const char *p, const char *b,
169 const char *gx, const char *gy, const char *n)
170{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100171 int ret;
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100172
173 MPI_CHK( mpi_read_string( &grp->P, radix, p ) );
174 MPI_CHK( mpi_read_string( &grp->B, radix, b ) );
175 MPI_CHK( ecp_point_read_string( &grp->G, radix, gx, gy ) );
176 MPI_CHK( mpi_read_string( &grp->N, radix, n ) );
177
Manuel Pégourié-Gonnard773ed542012-11-18 13:19:07 +0100178 grp->pbits = mpi_msb( &grp->P );
179 grp->nbits = mpi_msb( &grp->N );
180
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100181cleanup:
182 return( ret );
183}
184
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100185/*
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100186 * Export a point into unsigned binary data (SEC1 2.3.3)
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100187 */
Manuel Pégourié-Gonnard7e860252013-02-10 10:58:48 +0100188int ecp_point_write_binary( const ecp_group *grp, const ecp_point *P,
189 int format, uint8_t *olen,
190 unsigned char *buf, size_t buflen )
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100191{
192 int ret;
193 size_t plen;
194
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100195 if( format != POLARSSL_ECP_PF_UNCOMPRESSED &&
196 format != POLARSSL_ECP_PF_COMPRESSED )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100197 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100198
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100199 /*
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100200 * Common case: P == 0
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100201 */
202 if( mpi_cmp_int( &P->Z, 0 ) == 0 )
203 {
204 if( buflen < 1 )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100205 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100206
207 buf[0] = 0x00;
208 *olen = 1;
209
210 return( 0 );
211 }
212
213 plen = mpi_size( &grp->P );
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100214
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100215 if( format == POLARSSL_ECP_PF_UNCOMPRESSED )
216 {
217 *olen = 2 * plen + 1;
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100218
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100219 if( buflen < *olen )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100220 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100221
222 buf[0] = 0x04;
223 MPI_CHK( mpi_write_binary( &P->X, buf + 1, plen ) );
224 MPI_CHK( mpi_write_binary( &P->Y, buf + 1 + plen, plen ) );
225 }
226 else if( format == POLARSSL_ECP_PF_COMPRESSED )
227 {
228 *olen = plen + 1;
229
230 if( buflen < *olen )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100231 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100232
233 buf[0] = 0x02 + mpi_get_bit( &P->Y, 0 );
234 MPI_CHK( mpi_write_binary( &P->X, buf + 1, plen ) );
235 }
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100236
237cleanup:
238 return( ret );
239}
240
241/*
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100242 * Import a point from unsigned binary data (SEC1 2.3.4)
243 */
Manuel Pégourié-Gonnard7e860252013-02-10 10:58:48 +0100244int ecp_point_read_binary( const ecp_group *grp, ecp_point *pt,
245 const unsigned char *buf, size_t ilen ) {
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100246 int ret;
247 size_t plen;
248
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100249 if( ilen == 1 && buf[0] == 0x00 )
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100250 return( ecp_set_zero( pt ) );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100251
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100252 plen = mpi_size( &grp->P );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100253
254 if( ilen != 2 * plen + 1 || buf[0] != 0x04 )
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100255 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100256
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100257 MPI_CHK( mpi_read_binary( &pt->X, buf + 1, plen ) );
258 MPI_CHK( mpi_read_binary( &pt->Y, buf + 1 + plen, plen ) );
259 MPI_CHK( mpi_lset( &pt->Z, 1 ) );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100260
261cleanup:
262 return( ret );
263}
264
265/*
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100266 * Import a point from a TLS ECPoint record (RFC 4492)
267 * struct {
268 * opaque point <1..2^8-1>;
269 * } ECPoint;
270 */
271int ecp_tls_read_point( const ecp_group *grp, ecp_point *pt,
272 const unsigned char *buf, size_t buf_len )
273{
274 unsigned char data_len;
275
276 /*
277 * We must have at least two bytes (1 for length, at least of for data)
278 */
279 if( buf_len < 2 )
280 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
281
282 data_len = *buf++;
283 if( data_len < 1 || data_len > buf_len - 1 )
284 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
285
Manuel Pégourié-Gonnard7e860252013-02-10 10:58:48 +0100286 return ecp_point_read_binary( grp, pt, buf, data_len );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100287}
288
289/*
290 * Export a point as a TLS ECPoint record (RFC 4492)
291 * struct {
292 * opaque point <1..2^8-1>;
293 * } ECPoint;
294 */
295int ecp_tls_write_point( const ecp_group *grp, const ecp_point *pt,
296 int format, unsigned char *buf, size_t buf_len )
297{
298 /*
299 * buf_len must be at least one, for our length byte
300 */
301 if( buf_len < 1 )
302 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
303
Manuel Pégourié-Gonnard7e860252013-02-10 10:58:48 +0100304 return ecp_point_write_binary( grp, pt, format, buf, buf + 1, buf_len - 1);
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100305}
306
307/*
Manuel Pégourié-Gonnard773ed542012-11-18 13:19:07 +0100308 * Wrapper around fast quasi-modp functions, with fall-back to mpi_mod_mpi.
309 * See the documentation of struct ecp_group.
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100310 */
311static int ecp_modp( mpi *N, const ecp_group *grp )
312{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100313 int ret;
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100314
315 if( grp->modp == NULL )
316 return( mpi_mod_mpi( N, N, &grp->P ) );
317
318 if( mpi_cmp_int( N, 0 ) < 0 || mpi_msb( N ) > 2 * grp->pbits )
319 return( POLARSSL_ERR_ECP_GENERIC );
320
321 MPI_CHK( grp->modp( N ) );
322
323 while( mpi_cmp_int( N, 0 ) < 0 )
324 MPI_CHK( mpi_add_mpi( N, N, &grp->P ) );
325
326 while( mpi_cmp_mpi( N, &grp->P ) >= 0 )
327 MPI_CHK( mpi_sub_mpi( N, N, &grp->P ) );
328
329cleanup:
330 return( ret );
331}
332
333/*
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100334 * 192 bits in terms of t_uint
335 */
336#define P192_SIZE_INT ( 192 / CHAR_BIT / sizeof( t_uint ) )
337
338/*
339 * Table to get S1, S2, S3 of FIPS 186-3 D.2.1:
340 * -1 means let this chunk be 0
341 * a positive value i means A_i.
342 */
343#define P192_CHUNKS 3
344#define P192_CHUNK_CHAR ( 64 / CHAR_BIT )
345#define P192_CHUNK_INT ( P192_CHUNK_CHAR / sizeof( t_uint ) )
346
347const signed char p192_tbl[][P192_CHUNKS] = {
348 { -1, 3, 3 }, /* S1 */
349 { 4, 4, -1 }, /* S2 */
350 { 5, 5, 5 }, /* S3 */
351};
352
353/*
354 * Fast quasi-reduction modulo p192 (FIPS 186-3 D.2.1)
355 */
356static int ecp_mod_p192( mpi *N )
357{
358 int ret;
359 unsigned char i, j, offset;
360 signed char chunk;
361 mpi tmp, acc;
362 t_uint tmp_p[P192_SIZE_INT], acc_p[P192_SIZE_INT + 1];
363
364 tmp.s = 1;
365 tmp.n = sizeof( tmp_p ) / sizeof( tmp_p[0] );
366 tmp.p = tmp_p;
367
368 acc.s = 1;
369 acc.n = sizeof( acc_p ) / sizeof( acc_p[0] );
370 acc.p = acc_p;
371
372 MPI_CHK( mpi_grow( N, P192_SIZE_INT * 2 ) );
373
374 /*
375 * acc = T
376 */
377 memset( acc_p, 0, sizeof( acc_p ) );
378 memcpy( acc_p, N->p, P192_CHUNK_CHAR * P192_CHUNKS );
379
380 for( i = 0; i < sizeof( p192_tbl ) / sizeof( p192_tbl[0] ); i++)
381 {
382 /*
383 * tmp = S_i
384 */
385 memset( tmp_p, 0, sizeof( tmp_p ) );
386 for( j = 0, offset = P192_CHUNKS - 1; j < P192_CHUNKS; j++, offset-- )
387 {
388 chunk = p192_tbl[i][j];
389 if( chunk >= 0 )
390 memcpy( tmp_p + offset * P192_CHUNK_INT,
391 N->p + chunk * P192_CHUNK_INT,
392 P192_CHUNK_CHAR );
393 }
394
395 /*
396 * acc += tmp
397 */
398 MPI_CHK( mpi_add_abs( &acc, &acc, &tmp ) );
399 }
400
401 MPI_CHK( mpi_copy( N, &acc ) );
402
403cleanup:
404 return( ret );
405}
406
407/*
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100408 * Size of p521 in terms of t_uint
409 */
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100410#define P521_SIZE_INT ( 521 / CHAR_BIT / sizeof( t_uint ) + 1 )
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100411
412/*
413 * Bits to keep in the most significant t_uint
414 */
415#if defined(POLARSS_HAVE_INT8)
416#define P521_MASK 0x01
417#else
418#define P521_MASK 0x01FF
419#endif
420
421/*
422 * Fast quasi-reduction modulo p521 (FIPS 186-3 D.2.5)
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100423 */
424static int ecp_mod_p521( mpi *N )
425{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100426 int ret;
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100427 t_uint Mp[P521_SIZE_INT];
428 mpi M;
429
430 if( N->n < P521_SIZE_INT )
431 return( 0 );
432
433 memset( Mp, 0, P521_SIZE_INT * sizeof( t_uint ) );
434 memcpy( Mp, N->p, P521_SIZE_INT * sizeof( t_uint ) );
435 Mp[P521_SIZE_INT - 1] &= P521_MASK;
436
437 M.s = 1;
438 M.n = P521_SIZE_INT;
439 M.p = Mp;
440
441 MPI_CHK( mpi_shift_r( N, 521 ) );
442
443 MPI_CHK( mpi_add_abs( N, N, &M ) );
444
445cleanup:
446 return( ret );
447}
448
449/*
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100450 * Domain parameters for secp192r1
451 */
452#define SECP192R1_P \
453 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFF"
454#define SECP192R1_B \
455 "64210519E59C80E70FA7E9AB72243049FEB8DEECC146B9B1"
456#define SECP192R1_GX \
457 "188DA80EB03090F67CBF20EB43A18800F4FF0AFD82FF1012"
458#define SECP192R1_GY \
459 "07192B95FFC8DA78631011ED6B24CDD573F977A11E794811"
460#define SECP192R1_N \
461 "FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831"
462
463/*
464 * Domain parameters for secp224r1
465 */
466#define SECP224R1_P \
467 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000001"
468#define SECP224R1_B \
469 "B4050A850C04B3ABF54132565044B0B7D7BFD8BA270B39432355FFB4"
470#define SECP224R1_GX \
471 "B70E0CBD6BB4BF7F321390B94A03C1D356C21122343280D6115C1D21"
472#define SECP224R1_GY \
473 "BD376388B5F723FB4C22DFE6CD4375A05A07476444D5819985007E34"
474#define SECP224R1_N \
475 "FFFFFFFFFFFFFFFFFFFFFFFFFFFF16A2E0B8F03E13DD29455C5C2A3D"
476
477/*
478 * Domain parameters for secp256r1
479 */
480#define SECP256R1_P \
481 "FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF"
482#define SECP256R1_B \
483 "5AC635D8AA3A93E7B3EBBD55769886BC651D06B0CC53B0F63BCE3C3E27D2604B"
484#define SECP256R1_GX \
485 "6B17D1F2E12C4247F8BCE6E563A440F277037D812DEB33A0F4A13945D898C296"
486#define SECP256R1_GY \
487 "4FE342E2FE1A7F9B8EE7EB4A7C0F9E162BCE33576B315ECECBB6406837BF51F5"
488#define SECP256R1_N \
489 "FFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551"
490
491/*
492 * Domain parameters for secp384r1
493 */
494#define SECP384R1_P \
495 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
496 "FFFFFFFFFFFFFFFEFFFFFFFF0000000000000000FFFFFFFF"
497#define SECP384R1_B \
498 "B3312FA7E23EE7E4988E056BE3F82D19181D9C6EFE814112" \
499 "0314088F5013875AC656398D8A2ED19D2A85C8EDD3EC2AEF"
500#define SECP384R1_GX \
501 "AA87CA22BE8B05378EB1C71EF320AD746E1D3B628BA79B98" \
502 "59F741E082542A385502F25DBF55296C3A545E3872760AB7"
503#define SECP384R1_GY \
504 "3617DE4A96262C6F5D9E98BF9292DC29F8F41DBD289A147C" \
505 "E9DA3113B5F0B8C00A60B1CE1D7E819D7A431D7C90EA0E5F"
506#define SECP384R1_N \
507 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
508 "C7634D81F4372DDF581A0DB248B0A77AECEC196ACCC52973"
509
510/*
511 * Domain parameters for secp521r1
512 */
513#define SECP521R1_P \
514 "000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
515 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
516 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
517#define SECP521R1_B \
518 "00000051953EB9618E1C9A1F929A21A0B68540EEA2DA725B" \
519 "99B315F3B8B489918EF109E156193951EC7E937B1652C0BD" \
520 "3BB1BF073573DF883D2C34F1EF451FD46B503F00"
521#define SECP521R1_GX \
522 "000000C6858E06B70404E9CD9E3ECB662395B4429C648139" \
523 "053FB521F828AF606B4D3DBAA14B5E77EFE75928FE1DC127" \
524 "A2FFA8DE3348B3C1856A429BF97E7E31C2E5BD66"
525#define SECP521R1_GY \
526 "0000011839296A789A3BC0045C8A5FB42C7D1BD998F54449" \
527 "579B446817AFBD17273E662C97EE72995EF42640C550B901" \
528 "3FAD0761353C7086A272C24088BE94769FD16650"
529#define SECP521R1_N \
530 "000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
531 "FFFFFFFFFFFFFFFFFFFFFFFA51868783BF2F966B7FCC0148" \
532 "F709A5D03BB5C9B8899C47AEBB6FB71E91386409"
533
534/*
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100535 * Set a group using well-known domain parameters
536 */
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100537int ecp_use_known_dp( ecp_group *grp, uint16_t index )
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100538{
539 switch( index )
540 {
541 case POLARSSL_ECP_DP_SECP192R1:
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100542 grp->modp = ecp_mod_p192;
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100543 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100544 SECP192R1_P, SECP192R1_B,
545 SECP192R1_GX, SECP192R1_GY, SECP192R1_N ) );
546
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100547 case POLARSSL_ECP_DP_SECP224R1:
548 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100549 SECP224R1_P, SECP224R1_B,
550 SECP224R1_GX, SECP224R1_GY, SECP224R1_N ) );
551
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100552 case POLARSSL_ECP_DP_SECP256R1:
553 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100554 SECP256R1_P, SECP256R1_B,
555 SECP256R1_GX, SECP256R1_GY, SECP256R1_N ) );
556
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100557 case POLARSSL_ECP_DP_SECP384R1:
558 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100559 SECP384R1_P, SECP384R1_B,
560 SECP384R1_GX, SECP384R1_GY, SECP384R1_N ) );
561
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100562 case POLARSSL_ECP_DP_SECP521R1:
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100563 grp->modp = ecp_mod_p521;
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100564 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100565 SECP521R1_P, SECP521R1_B,
566 SECP521R1_GX, SECP521R1_GY, SECP521R1_N ) );
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100567 }
568
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100569 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
570}
571
572/*
573 * Set a group from an ECParameters record (RFC 4492)
574 */
575int ecp_tls_read_group( ecp_group *grp, const unsigned char *buf, size_t len )
576{
577 uint16_t namedcurve;
578
579 /*
580 * We expect at least three bytes (see below)
581 */
582 if( len < 3 )
583 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
584
585 /*
586 * First byte is curve_type; only named_curve is handled
587 */
588 if( *buf++ != POLARSSL_ECP_TLS_NAMED_CURVE )
589 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
590
591 /*
592 * Next two bytes are the namedcurve
593 */
594 namedcurve = 256 * buf[0] + buf[1];
595 return ecp_use_known_dp( grp, namedcurve );
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100596}
Manuel Pégourié-Gonnardab38b702012-11-05 17:34:55 +0100597
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100598/*
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100599 * Fast mod-p functions expect their argument to be in the 0..p^2 range.
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100600 *
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100601 * In order to guarantee that, we need to ensure that operands of
602 * mpi_mul_mpi are in the 0..p range. So, after each operation we will
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100603 * bring the result back to this range.
604 *
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100605 * The following macros are shortcuts for doing that.
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100606 */
607
608/*
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100609 * Reduce a mpi mod p in-place, general case, to use after mpi_mul_mpi
610 */
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100611#define MOD_MUL( N ) MPI_CHK( ecp_modp( &N, grp ) )
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100612
613/*
614 * Reduce a mpi mod p in-place, to use after mpi_sub_mpi
615 */
616#define MOD_SUB( N ) \
617 while( mpi_cmp_int( &N, 0 ) < 0 ) \
618 MPI_CHK( mpi_add_mpi( &N, &N, &grp->P ) )
619
620/*
621 * Reduce a mpi mod p in-place, to use after mpi_add_mpi and mpi_mul_int
622 */
623#define MOD_ADD( N ) \
624 while( mpi_cmp_mpi( &N, &grp->P ) >= 0 ) \
625 MPI_CHK( mpi_sub_mpi( &N, &N, &grp->P ) )
626
627/*
Manuel Pégourié-Gonnard1c330572012-11-24 12:05:44 +0100628 * Check that a point is valid as a public key (SEC1 3.2.3.1)
629 */
630int ecp_check_pubkey( const ecp_group *grp, const ecp_point *pt )
631{
632 int ret;
633 mpi YY, RHS;
634
635 if( mpi_cmp_int( &pt->Z, 0 ) == 0 )
636 return( POLARSSL_ERR_ECP_GENERIC );
637
638 /*
639 * pt coordinates must be normalized for our checks
640 */
641 if( mpi_cmp_int( &pt->Z, 1 ) != 0 )
642 return( POLARSSL_ERR_ECP_GENERIC );
643
644 if( mpi_cmp_int( &pt->X, 0 ) < 0 ||
645 mpi_cmp_int( &pt->Y, 0 ) < 0 ||
646 mpi_cmp_mpi( &pt->X, &grp->P ) >= 0 ||
647 mpi_cmp_mpi( &pt->Y, &grp->P ) >= 0 )
648 return( POLARSSL_ERR_ECP_GENERIC );
649
650 mpi_init( &YY ); mpi_init( &RHS );
651
652 /*
653 * YY = Y^2
654 * RHS = X (X^2 - 3) + B = X^3 - 3X + B
655 */
656 MPI_CHK( mpi_mul_mpi( &YY, &pt->Y, &pt->Y ) ); MOD_MUL( YY );
657 MPI_CHK( mpi_mul_mpi( &RHS, &pt->X, &pt->X ) ); MOD_MUL( RHS );
658 MPI_CHK( mpi_sub_int( &RHS, &RHS, 3 ) ); MOD_SUB( RHS );
659 MPI_CHK( mpi_mul_mpi( &RHS, &RHS, &pt->X ) ); MOD_MUL( RHS );
660 MPI_CHK( mpi_add_mpi( &RHS, &RHS, &grp->B ) ); MOD_ADD( RHS );
661
662 if( mpi_cmp_mpi( &YY, &RHS ) != 0 )
663 ret = POLARSSL_ERR_ECP_GENERIC;
664
665cleanup:
666
667 mpi_free( &YY ); mpi_free( &RHS );
668
669 return( ret );
670}
671
672/*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100673 * Normalize jacobian coordinates so that Z == 0 || Z == 1 (GECC 3.2.1)
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100674 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100675static int ecp_normalize( const ecp_group *grp, ecp_point *pt )
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100676{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100677 int ret;
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100678 mpi Zi, ZZi;
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100679
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100680 if( mpi_cmp_int( &pt->Z, 0 ) == 0 )
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100681 return( 0 );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100682
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100683 mpi_init( &Zi ); mpi_init( &ZZi );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100684
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100685 /*
686 * X = X / Z^2 mod p
687 */
688 MPI_CHK( mpi_inv_mod( &Zi, &pt->Z, &grp->P ) );
689 MPI_CHK( mpi_mul_mpi( &ZZi, &Zi, &Zi ) ); MOD_MUL( ZZi );
690 MPI_CHK( mpi_mul_mpi( &pt->X, &pt->X, &ZZi ) ); MOD_MUL( pt->X );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100691
692 /*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100693 * Y = Y / Z^3 mod p
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100694 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100695 MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &ZZi ) ); MOD_MUL( pt->Y );
696 MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &Zi ) ); MOD_MUL( pt->Y );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100697
698 /*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100699 * Z = 1
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100700 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100701 MPI_CHK( mpi_lset( &pt->Z, 1 ) );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100702
703cleanup:
704
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100705 mpi_free( &Zi ); mpi_free( &ZZi );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100706
707 return( ret );
708}
709
710/*
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100711 * Normalize jacobian coordinates of an array of points,
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +0100712 * using Montgomery's trick to perform only one inversion mod P.
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100713 * (See for example Cohen's "A Course in Computational Algebraic Number
714 * Theory", Algorithm 10.3.4.)
715 *
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +0100716 * Warning: fails if one of the points is zero!
717 * This should never happen, see choice of w in ecp_mul().
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100718 */
719static int ecp_normalize_many( const ecp_group *grp,
720 ecp_point T[], size_t t_len )
721{
722 int ret;
723 size_t i;
724 mpi *c, u, Zi, ZZi;
725
726 if( t_len < 2 )
727 return( ecp_normalize( grp, T ) );
728
729 if( ( c = (mpi *) malloc( t_len * sizeof( mpi ) ) ) == NULL )
730 return( POLARSSL_ERR_ECP_GENERIC );
731
732 mpi_init( &u ); mpi_init( &Zi ); mpi_init( &ZZi );
733 for( i = 0; i < t_len; i++ )
734 mpi_init( &c[i] );
735
736 /*
737 * c[i] = Z_0 * ... * Z_i
738 */
739 MPI_CHK( mpi_copy( &c[0], &T[0].Z ) );
740 for( i = 1; i < t_len; i++ )
741 {
742 MPI_CHK( mpi_mul_mpi( &c[i], &c[i-1], &T[i].Z ) );
743 MOD_MUL( c[i] );
744 }
745
746 /*
747 * u = 1 / (Z_0 * ... * Z_n) mod P
748 */
749 MPI_CHK( mpi_inv_mod( &u, &c[t_len-1], &grp->P ) );
750
751 for( i = t_len - 1; ; i-- )
752 {
753 /*
754 * Zi = 1 / Z_i mod p
755 * u = 1 / (Z_0 * ... * Z_i) mod P
756 */
757 if( i == 0 ) {
758 MPI_CHK( mpi_copy( &Zi, &u ) );
759 }
760 else
761 {
762 MPI_CHK( mpi_mul_mpi( &Zi, &u, &c[i-1] ) ); MOD_MUL( Zi );
763 MPI_CHK( mpi_mul_mpi( &u, &u, &T[i].Z ) ); MOD_MUL( u );
764 }
765
766 /*
767 * proceed as in normalize()
768 */
769 MPI_CHK( mpi_mul_mpi( &ZZi, &Zi, &Zi ) ); MOD_MUL( ZZi );
770 MPI_CHK( mpi_mul_mpi( &T[i].X, &T[i].X, &ZZi ) ); MOD_MUL( T[i].X );
771 MPI_CHK( mpi_mul_mpi( &T[i].Y, &T[i].Y, &ZZi ) ); MOD_MUL( T[i].Y );
772 MPI_CHK( mpi_mul_mpi( &T[i].Y, &T[i].Y, &Zi ) ); MOD_MUL( T[i].Y );
773 MPI_CHK( mpi_lset( &T[i].Z, 1 ) );
774
775 if( i == 0 )
776 break;
777 }
778
779cleanup:
780
781 mpi_free( &u ); mpi_free( &Zi ); mpi_free( &ZZi );
782 for( i = 0; i < t_len; i++ )
783 mpi_free( &c[i] );
784 free( c );
785
786 return( ret );
787}
788
789
790/*
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100791 * Point doubling R = 2 P, Jacobian coordinates (GECC 3.21)
792 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100793static int ecp_double_jac( const ecp_group *grp, ecp_point *R,
794 const ecp_point *P )
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100795{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100796 int ret;
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100797 mpi T1, T2, T3, X, Y, Z;
798
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +0100799#if defined(POLARSSL_SELF_TEST)
800 dbl_count++;
801#endif
802
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100803 if( mpi_cmp_int( &P->Z, 0 ) == 0 )
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100804 return( ecp_set_zero( R ) );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100805
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100806 mpi_init( &T1 ); mpi_init( &T2 ); mpi_init( &T3 );
807 mpi_init( &X ); mpi_init( &Y ); mpi_init( &Z );
808
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100809 MPI_CHK( mpi_mul_mpi( &T1, &P->Z, &P->Z ) ); MOD_MUL( T1 );
810 MPI_CHK( mpi_sub_mpi( &T2, &P->X, &T1 ) ); MOD_SUB( T2 );
811 MPI_CHK( mpi_add_mpi( &T1, &P->X, &T1 ) ); MOD_ADD( T1 );
812 MPI_CHK( mpi_mul_mpi( &T2, &T2, &T1 ) ); MOD_MUL( T2 );
813 MPI_CHK( mpi_mul_int( &T2, &T2, 3 ) ); MOD_ADD( T2 );
814 MPI_CHK( mpi_mul_int( &Y, &P->Y, 2 ) ); MOD_ADD( Y );
815 MPI_CHK( mpi_mul_mpi( &Z, &Y, &P->Z ) ); MOD_MUL( Z );
816 MPI_CHK( mpi_mul_mpi( &Y, &Y, &Y ) ); MOD_MUL( Y );
817 MPI_CHK( mpi_mul_mpi( &T3, &Y, &P->X ) ); MOD_MUL( T3 );
818 MPI_CHK( mpi_mul_mpi( &Y, &Y, &Y ) ); MOD_MUL( Y );
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100819
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100820 /*
821 * For Y = Y / 2 mod p, we must make sure that Y is even before
822 * using right-shift. No need to reduce mod p afterwards.
823 */
824 if( mpi_get_bit( &Y, 0 ) == 1 )
825 MPI_CHK( mpi_add_mpi( &Y, &Y, &grp->P ) );
826 MPI_CHK( mpi_shift_r( &Y, 1 ) );
827
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100828 MPI_CHK( mpi_mul_mpi( &X, &T2, &T2 ) ); MOD_MUL( X );
829 MPI_CHK( mpi_mul_int( &T1, &T3, 2 ) ); MOD_ADD( T1 );
830 MPI_CHK( mpi_sub_mpi( &X, &X, &T1 ) ); MOD_SUB( X );
831 MPI_CHK( mpi_sub_mpi( &T1, &T3, &X ) ); MOD_SUB( T1 );
832 MPI_CHK( mpi_mul_mpi( &T1, &T1, &T2 ) ); MOD_MUL( T1 );
833 MPI_CHK( mpi_sub_mpi( &Y, &T1, &Y ) ); MOD_SUB( Y );
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100834
835 MPI_CHK( mpi_copy( &R->X, &X ) );
836 MPI_CHK( mpi_copy( &R->Y, &Y ) );
837 MPI_CHK( mpi_copy( &R->Z, &Z ) );
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100838
839cleanup:
840
841 mpi_free( &T1 ); mpi_free( &T2 ); mpi_free( &T3 );
842 mpi_free( &X ); mpi_free( &Y ); mpi_free( &Z );
843
844 return( ret );
845}
846
847/*
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100848 * Addition or subtraction: R = P + Q or R = P + Q,
849 * mixed affine-Jacobian coordinates (GECC 3.22)
850 *
851 * The coordinates of Q must be normalized (= affine),
852 * but those of P don't need to. R is not normalized.
853 *
854 * If sign >= 0, perform addition, otherwise perform subtraction,
855 * taking advantage of the fact that, for Q != 0, we have
856 * -Q = (Q.X, -Q.Y, Q.Z)
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100857 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100858static int ecp_add_mixed( const ecp_group *grp, ecp_point *R,
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100859 const ecp_point *P, const ecp_point *Q,
860 signed char sign )
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100861{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100862 int ret;
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100863 mpi T1, T2, T3, T4, X, Y, Z;
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100864
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +0100865#if defined(POLARSSL_SELF_TEST)
866 add_count++;
867#endif
868
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100869 /*
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100870 * Trivial cases: P == 0 or Q == 0
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100871 * (Check Q first, so that we know Q != 0 when we compute -Q.)
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100872 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100873 if( mpi_cmp_int( &Q->Z, 0 ) == 0 )
874 return( ecp_copy( R, P ) );
875
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100876 if( mpi_cmp_int( &P->Z, 0 ) == 0 )
877 {
878 ret = ecp_copy( R, Q );
879
880 /*
881 * -R.Y mod P = P - R.Y unless R.Y == 0
882 */
883 if( ret == 0 && sign < 0)
884 if( mpi_cmp_int( &R->Y, 0 ) != 0 )
885 ret = mpi_sub_mpi( &R->Y, &grp->P, &R->Y );
886
887 return( ret );
888 }
889
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100890 /*
891 * Make sure Q coordinates are normalized
892 */
893 if( mpi_cmp_int( &Q->Z, 1 ) != 0 )
894 return( POLARSSL_ERR_ECP_GENERIC );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100895
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100896 mpi_init( &T1 ); mpi_init( &T2 ); mpi_init( &T3 ); mpi_init( &T4 );
897 mpi_init( &X ); mpi_init( &Y ); mpi_init( &Z );
Manuel Pégourié-Gonnardab38b702012-11-05 17:34:55 +0100898
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100899 MPI_CHK( mpi_mul_mpi( &T1, &P->Z, &P->Z ) ); MOD_MUL( T1 );
900 MPI_CHK( mpi_mul_mpi( &T2, &T1, &P->Z ) ); MOD_MUL( T2 );
901 MPI_CHK( mpi_mul_mpi( &T1, &T1, &Q->X ) ); MOD_MUL( T1 );
902 MPI_CHK( mpi_mul_mpi( &T2, &T2, &Q->Y ) ); MOD_MUL( T2 );
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100903
904 /*
905 * For subtraction, -Q.Y should have been used instead of Q.Y,
906 * so we replace T2 by -T2, which is P - T2 mod P
907 */
908 if( sign < 0 )
909 {
910 MPI_CHK( mpi_sub_mpi( &T2, &grp->P, &T2 ) );
911 MOD_SUB( T2 );
912 }
913
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100914 MPI_CHK( mpi_sub_mpi( &T1, &T1, &P->X ) ); MOD_SUB( T1 );
915 MPI_CHK( mpi_sub_mpi( &T2, &T2, &P->Y ) ); MOD_SUB( T2 );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100916
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100917 if( mpi_cmp_int( &T1, 0 ) == 0 )
918 {
919 if( mpi_cmp_int( &T2, 0 ) == 0 )
920 {
921 ret = ecp_double_jac( grp, R, P );
922 goto cleanup;
923 }
924 else
925 {
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100926 ret = ecp_set_zero( R );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100927 goto cleanup;
928 }
929 }
930
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100931 MPI_CHK( mpi_mul_mpi( &Z, &P->Z, &T1 ) ); MOD_MUL( Z );
932 MPI_CHK( mpi_mul_mpi( &T3, &T1, &T1 ) ); MOD_MUL( T3 );
933 MPI_CHK( mpi_mul_mpi( &T4, &T3, &T1 ) ); MOD_MUL( T4 );
934 MPI_CHK( mpi_mul_mpi( &T3, &T3, &P->X ) ); MOD_MUL( T3 );
935 MPI_CHK( mpi_mul_int( &T1, &T3, 2 ) ); MOD_ADD( T1 );
936 MPI_CHK( mpi_mul_mpi( &X, &T2, &T2 ) ); MOD_MUL( X );
937 MPI_CHK( mpi_sub_mpi( &X, &X, &T1 ) ); MOD_SUB( X );
938 MPI_CHK( mpi_sub_mpi( &X, &X, &T4 ) ); MOD_SUB( X );
939 MPI_CHK( mpi_sub_mpi( &T3, &T3, &X ) ); MOD_SUB( T3 );
940 MPI_CHK( mpi_mul_mpi( &T3, &T3, &T2 ) ); MOD_MUL( T3 );
941 MPI_CHK( mpi_mul_mpi( &T4, &T4, &P->Y ) ); MOD_MUL( T4 );
942 MPI_CHK( mpi_sub_mpi( &Y, &T3, &T4 ) ); MOD_SUB( Y );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100943
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100944 MPI_CHK( mpi_copy( &R->X, &X ) );
945 MPI_CHK( mpi_copy( &R->Y, &Y ) );
946 MPI_CHK( mpi_copy( &R->Z, &Z ) );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100947
948cleanup:
949
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100950 mpi_free( &T1 ); mpi_free( &T2 ); mpi_free( &T3 ); mpi_free( &T4 );
951 mpi_free( &X ); mpi_free( &Y ); mpi_free( &Z );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100952
953 return( ret );
954}
955
956/*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100957 * Addition: R = P + Q, result's coordinates normalized
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100958 */
959int ecp_add( const ecp_group *grp, ecp_point *R,
960 const ecp_point *P, const ecp_point *Q )
961{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100962 int ret;
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100963
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100964 MPI_CHK( ecp_add_mixed( grp, R, P, Q , 1 ) );
965 MPI_CHK( ecp_normalize( grp, R ) );
966
967cleanup:
968 return( ret );
969}
970
971/*
972 * Subtraction: R = P - Q, result's coordinates normalized
973 */
974int ecp_sub( const ecp_group *grp, ecp_point *R,
975 const ecp_point *P, const ecp_point *Q )
976{
977 int ret;
978
979 MPI_CHK( ecp_add_mixed( grp, R, P, Q, -1 ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100980 MPI_CHK( ecp_normalize( grp, R ) );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100981
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100982cleanup:
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100983 return( ret );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100984}
985
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +0100986/*
Manuel Pégourié-Gonnard85556072012-11-17 19:54:20 +0100987 * Compute a modified width-w non-adjacent form (NAF) of a number,
988 * with a fixed pattern for resistance to SPA/timing attacks,
989 * see <http://rd.springer.com/chapter/10.1007/3-540-36563-X_23>.
990 * (The resulting multiplication algorithm can also been seen as a
991 * modification of 2^w-ary multiplication, with signed coefficients,
992 * all of them odd.)
993 *
994 * Input:
995 * m must be an odd positive mpi less than w * k bits long
996 * x must be an array of k elements
997 * w must be less than a certain maximum (currently 8)
998 *
999 * The result is a sequence x[0], ..., x[k-1] with x[i] in the range
1000 * - 2^(width - 1) .. 2^(width - 1) - 1 such that
1001 * m = (2 * x[0] + 1) + 2^width * (2 * x[1] + 1) + ...
1002 * + 2^((k-1) * width) * (2 * x[k-1] + 1)
1003 *
1004 * Compared to "Algorithm SPA-resistant Width-w NAF with Odd Scalar"
1005 * p. 335 of the cited reference, here we return only u, not d_w since
1006 * it is known that the other d_w[j] will be 0. Moreover, the returned
1007 * string doesn't actually store u_i but x_i = u_i / 2 since it is known
1008 * that u_i is odd. Also, since we always select a positive value for d
1009 * mod 2^w, we don't need to check the sign of u[i-1] when the reference
1010 * does. Finally, there is an off-by-one error in the reference: the
1011 * last index should be k-1, not k.
1012 */
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001013static int ecp_w_naf_fixed( signed char x[], size_t k,
1014 unsigned char w, const mpi *m )
Manuel Pégourié-Gonnard85556072012-11-17 19:54:20 +01001015{
1016 int ret;
1017 unsigned int i, u, mask, carry;
1018 mpi M;
1019
1020 mpi_init( &M );
1021
1022 MPI_CHK( mpi_copy( &M, m ) );
1023 mask = ( 1 << w ) - 1;
1024 carry = 1 << ( w - 1 );
1025
1026 for( i = 0; i < k; i++ )
1027 {
1028 u = M.p[0] & mask;
1029
1030 if( ( u & 1 ) == 0 && i > 0 )
1031 x[i - 1] -= carry;
1032
1033 x[i] = u >> 1;
1034 mpi_shift_r( &M, w );
1035 }
1036
1037 /*
1038 * We should have consumed all the bits now
1039 */
1040 if( mpi_cmp_int( &M, 0 ) != 0 )
1041 ret = POLARSSL_ERR_ECP_GENERIC;
1042
1043cleanup:
1044
1045 mpi_free( &M );
1046
1047 return( ret );
1048}
1049
1050/*
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001051 * Precompute odd multiples of P up to (2 * t_len - 1) P.
1052 * The table is filled with T[i] = (2 * i + 1) P.
1053 */
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001054static int ecp_precompute( const ecp_group *grp,
1055 ecp_point T[], size_t t_len,
1056 const ecp_point *P )
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001057{
1058 int ret;
1059 size_t i;
1060 ecp_point PP;
1061
1062 ecp_point_init( &PP );
1063
1064 MPI_CHK( ecp_add( grp, &PP, P, P ) );
1065
1066 MPI_CHK( ecp_copy( &T[0], P ) );
1067
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001068 for( i = 1; i < t_len; i++ )
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001069 MPI_CHK( ecp_add_mixed( grp, &T[i], &T[i-1], &PP, +1 ) );
1070
1071 /*
1072 * T[0] = P already has normalized coordinates
1073 */
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001074 MPI_CHK( ecp_normalize_many( grp, T + 1, t_len - 1 ) );
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001075
1076cleanup:
1077
1078 ecp_point_free( &PP );
1079
1080 return( ret );
1081}
1082
1083/*
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001084 * Maximum length of the precomputed table
1085 */
1086#define MAX_PRE_LEN ( 1 << (POLARSSL_ECP_WINDOW_SIZE - 1) )
1087
1088/*
1089 * Maximum length of the NAF: ceil( grp->nbits + 1 ) / w
1090 * (that is: grp->nbits / w + 1)
1091 * Allow p_bits + 1 bits in case M = grp->N + 1 is one bit longer than N.
1092 */
1093#define MAX_NAF_LEN ( POLARSSL_ECP_MAX_N_BITS / 2 + 1 )
1094
1095/*
1096 * Integer multiplication: R = m * P
1097 *
1098 * Based on fixed-pattern width-w NAF, see comments of ecp_w_naf_fixed()
1099 * and <http://rd.springer.com/chapter/10.1007/3-540-36563-X_23>.
1100 *
1101 * This function executes a fixed number of operations for
1102 * random m in the range 0 .. 2^nbits - 1.
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001103 */
1104int ecp_mul( const ecp_group *grp, ecp_point *R,
1105 const mpi *m, const ecp_point *P )
1106{
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001107 int ret;
1108 unsigned char w, m_is_odd;
1109 size_t pre_len, naf_len, i, j;
1110 signed char naf[ MAX_NAF_LEN ];
1111 ecp_point Q, T[ MAX_PRE_LEN ];
1112 mpi M;
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001113
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001114 if( mpi_cmp_int( m, 0 ) < 0 || mpi_msb( m ) > grp->nbits )
Manuel Pégourié-Gonnard4bdd47d2012-11-11 14:33:59 +01001115 return( POLARSSL_ERR_ECP_GENERIC );
1116
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001117 w = grp->nbits >= 521 ? 6 :
1118 grp->nbits >= 224 ? 5 :
1119 4;
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001120
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001121 /*
1122 * Make sure w is within the limits.
1123 * The last test ensures that none of the precomputed points is zero,
1124 * which wouldn't be handled correctly by ecp_normalize_many().
1125 * It is only useful for small curves, as used in the test suite.
1126 */
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001127 if( w > POLARSSL_ECP_WINDOW_SIZE )
1128 w = POLARSSL_ECP_WINDOW_SIZE;
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001129 if( w < 2 || w >= grp->nbits )
1130 w = 2;
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001131
1132 pre_len = 1 << ( w - 1 );
1133 naf_len = grp->nbits / w + 1;
1134
1135 mpi_init( &M );
1136 ecp_point_init( &Q );
1137 for( i = 0; i < pre_len; i++ )
1138 ecp_point_init( &T[i] );
1139
1140 m_is_odd = ( mpi_get_bit( m, 0 ) == 1 );
1141
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001142 /*
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001143 * Make sure M is odd:
1144 * later we'll get m * P by subtracting * P or 2 * P to M * P.
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001145 */
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001146 MPI_CHK( mpi_copy( &M, m ) );
1147 MPI_CHK( mpi_add_int( &M, &M, 1 + m_is_odd ) );
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001148
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001149 /*
1150 * Compute the fixed-pattern NAF and precompute odd multiples
1151 */
1152 MPI_CHK( ecp_w_naf_fixed( naf, naf_len, w, &M ) );
1153 MPI_CHK( ecp_precompute( grp, T, pre_len, P ) );
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001154
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001155 /*
1156 * Compute M * P, using a variant of left-to-right 2^w-ary multiplication:
1157 * at each step we add (2 * naf[i] + 1) P, then multiply by 2^w.
1158 *
1159 * If naf[i] >= 0, we have (2 * naf[i] + 1) P == T[ naf[i] ]
1160 * Otherwise, (2 * naf[i] + 1) P == - ( 2 * ( - naf[i] - 1 ) + 1) P
1161 * == T[ - naf[i] - 1 ]
1162 */
1163 MPI_CHK( ecp_set_zero( &Q ) );
1164 i = naf_len - 1;
1165 while( 1 )
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001166 {
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001167 if( naf[i] < 0 )
1168 {
1169 MPI_CHK( ecp_add_mixed( grp, &Q, &Q, &T[ - naf[i] - 1 ], -1 ) );
1170 }
1171 else
1172 {
1173 MPI_CHK( ecp_add_mixed( grp, &Q, &Q, &T[ naf[i] ], +1 ) );
1174 }
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001175
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001176 if( i == 0 )
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001177 break;
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001178 i--;
1179
1180 for( j = 0; j < w; j++ )
1181 {
1182 MPI_CHK( ecp_double_jac( grp, &Q, &Q ) );
1183 }
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001184 }
1185
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001186 /*
1187 * Now get m * P from M * P.
1188 * Since we don't need T[] any more, we can recycle it:
1189 * we already have T[0] = P, now set T[1] = 2 * P.
1190 */
1191 MPI_CHK( ecp_add( grp, &T[1], P, P ) );
1192 MPI_CHK( ecp_sub( grp, R, &Q, &T[m_is_odd] ) );
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001193
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001194
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001195cleanup:
1196
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001197 mpi_free( &M );
1198 ecp_point_free( &Q );
1199 for( i = 0; i < pre_len; i++ )
1200 ecp_point_free( &T[i] );
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001201
1202 return( ret );
1203}
1204
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001205/*
1206 * Generate a keypair (SEC1 3.2.1)
1207 */
1208int ecp_gen_keypair( const ecp_group *grp, mpi *d, ecp_point *Q,
1209 int (*f_rng)(void *, unsigned char *, size_t),
1210 void *p_rng )
1211{
1212 int count = 0;
1213 size_t n_size = (grp->nbits + 7) / 8;
1214
1215 /*
1216 * Generate d such that 1 <= n < N
1217 */
1218 do
1219 {
1220 mpi_fill_random( d, n_size, f_rng, p_rng );
1221
1222 while( mpi_cmp_mpi( d, &grp->N ) >= 0 )
1223 mpi_shift_r( d, 1 );
1224
1225 if( count++ > 10 )
1226 return( POLARSSL_ERR_ECP_GENERIC );
1227 }
1228 while( mpi_cmp_int( d, 1 ) < 0 );
1229
1230 return( ecp_mul( grp, Q, d, &grp->G ) );
1231}
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001232
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001233#if defined(POLARSSL_SELF_TEST)
1234
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +01001235/*
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001236 * Checkup routine
1237 */
1238int ecp_self_test( int verbose )
1239{
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001240 int ret;
1241 size_t i;
1242 ecp_group grp;
1243 ecp_point R;
1244 mpi m;
1245 unsigned long add_c_prev, dbl_c_prev;
1246 char *exponents[] =
1247 {
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001248 "000000000000000000000000000000000000000000000000", /* zero */
1249 "000000000000000000000000000000000000000000000001", /* one */
1250 "FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831", /* N */
1251 "5EA6F389A38B8BC81E767753B15AA5569E1782E30ABE7D25", /* random */
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001252 "400000000000000000000000000000000000000000000000",
1253 "7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF",
1254 "555555555555555555555555555555555555555555555555",
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001255 };
1256
1257 ecp_group_init( &grp );
1258 ecp_point_init( &R );
1259 mpi_init( &m );
1260
1261 MPI_CHK( ecp_use_known_dp( &grp, POLARSSL_ECP_DP_SECP192R1 ) );
1262
1263 if( verbose != 0 )
1264 printf( " ECP test #1 (SPA resistance): " );
1265
1266 add_count = 0;
1267 dbl_count = 0;
1268 MPI_CHK( mpi_read_string( &m, 16, exponents[0] ) );
1269 MPI_CHK( ecp_mul( &grp, &R, &m, &grp.G ) );
1270
1271 for( i = 1; i < sizeof( exponents ) / sizeof( exponents[0] ); i++ )
1272 {
1273 add_c_prev = add_count;
1274 dbl_c_prev = dbl_count;
1275 add_count = 0;
1276 dbl_count = 0;
1277
1278 MPI_CHK( mpi_read_string( &m, 16, exponents[i] ) );
1279 MPI_CHK( ecp_mul( &grp, &R, &m, &grp.G ) );
1280
1281 if( add_count != add_c_prev || dbl_count != dbl_c_prev )
1282 {
1283 if( verbose != 0 )
1284 printf( "failed (%zu)\n", i );
1285
1286 ret = 1;
1287 goto cleanup;
1288 }
1289 }
1290
1291 if( verbose != 0 )
1292 printf( "passed\n" );
1293
1294cleanup:
1295
1296 if( ret < 0 && verbose != 0 )
1297 printf( "Unexpected error, return code = %08X\n", ret );
1298
1299 ecp_group_free( &grp );
1300 ecp_point_free( &R );
1301 mpi_free( &m );
1302
1303 if( verbose != 0 )
1304 printf( "\n" );
1305
1306 return( ret );
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001307}
1308
1309#endif
1310
1311#endif