blob: ee0d3fa0be2e994e6eeb4ad3d60b1dbc4a21c3c0 [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é-Gonnard37d218a2012-11-24 15:19:55 +0100188int ecp_write_binary( const ecp_group *grp, const ecp_point *P, int format,
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100189 uint8_t *olen, unsigned char *buf, size_t buflen )
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100190{
191 int ret;
192 size_t plen;
193
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100194 if( format != POLARSSL_ECP_PF_UNCOMPRESSED &&
195 format != POLARSSL_ECP_PF_COMPRESSED )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100196 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100197
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100198 /*
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100199 * Common case: P == 0
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100200 */
201 if( mpi_cmp_int( &P->Z, 0 ) == 0 )
202 {
203 if( buflen < 1 )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100204 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100205
206 buf[0] = 0x00;
207 *olen = 1;
208
209 return( 0 );
210 }
211
212 plen = mpi_size( &grp->P );
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100213
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100214 if( format == POLARSSL_ECP_PF_UNCOMPRESSED )
215 {
216 *olen = 2 * plen + 1;
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100217
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100218 if( buflen < *olen )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100219 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100220
221 buf[0] = 0x04;
222 MPI_CHK( mpi_write_binary( &P->X, buf + 1, plen ) );
223 MPI_CHK( mpi_write_binary( &P->Y, buf + 1 + plen, plen ) );
224 }
225 else if( format == POLARSSL_ECP_PF_COMPRESSED )
226 {
227 *olen = plen + 1;
228
229 if( buflen < *olen )
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100230 return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnard37d218a2012-11-24 15:19:55 +0100231
232 buf[0] = 0x02 + mpi_get_bit( &P->Y, 0 );
233 MPI_CHK( mpi_write_binary( &P->X, buf + 1, plen ) );
234 }
Manuel Pégourié-Gonnarde19feb52012-11-24 14:10:14 +0100235
236cleanup:
237 return( ret );
238}
239
240/*
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100241 * Import a point from unsigned binary data (SEC1 2.3.4)
242 */
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100243int ecp_read_binary( const ecp_group *grp, ecp_point *pt,
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100244 const unsigned char *buf, size_t ilen ) {
245 int ret;
246 size_t plen;
247
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100248 if( ilen == 1 && buf[0] == 0x00 )
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100249 return( ecp_set_zero( pt ) );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100250
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100251 plen = mpi_size( &grp->P );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100252
253 if( ilen != 2 * plen + 1 || buf[0] != 0x04 )
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100254 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100255
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100256 MPI_CHK( mpi_read_binary( &pt->X, buf + 1, plen ) );
257 MPI_CHK( mpi_read_binary( &pt->Y, buf + 1 + plen, plen ) );
258 MPI_CHK( mpi_lset( &pt->Z, 1 ) );
Manuel Pégourié-Gonnard5e402d82012-11-24 16:19:42 +0100259
260cleanup:
261 return( ret );
262}
263
264/*
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100265 * Import a point from a TLS ECPoint record (RFC 4492)
266 * struct {
267 * opaque point <1..2^8-1>;
268 * } ECPoint;
269 */
270int ecp_tls_read_point( const ecp_group *grp, ecp_point *pt,
271 const unsigned char *buf, size_t buf_len )
272{
273 unsigned char data_len;
274
275 /*
276 * We must have at least two bytes (1 for length, at least of for data)
277 */
278 if( buf_len < 2 )
279 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
280
281 data_len = *buf++;
282 if( data_len < 1 || data_len > buf_len - 1 )
283 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
284
Manuel Pégourié-Gonnardd84895d2013-02-10 10:53:04 +0100285 return ecp_read_binary( grp, pt, buf, data_len );
Manuel Pégourié-Gonnard00794052013-02-09 19:00:07 +0100286}
287
288/*
289 * Export a point as a TLS ECPoint record (RFC 4492)
290 * struct {
291 * opaque point <1..2^8-1>;
292 * } ECPoint;
293 */
294int ecp_tls_write_point( const ecp_group *grp, const ecp_point *pt,
295 int format, unsigned char *buf, size_t buf_len )
296{
297 /*
298 * buf_len must be at least one, for our length byte
299 */
300 if( buf_len < 1 )
301 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
302
303 return ecp_write_binary( grp, pt, format, buf, buf + 1, buf_len - 1);
304}
305
306/*
Manuel Pégourié-Gonnard773ed542012-11-18 13:19:07 +0100307 * Wrapper around fast quasi-modp functions, with fall-back to mpi_mod_mpi.
308 * See the documentation of struct ecp_group.
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100309 */
310static int ecp_modp( mpi *N, const ecp_group *grp )
311{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100312 int ret;
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100313
314 if( grp->modp == NULL )
315 return( mpi_mod_mpi( N, N, &grp->P ) );
316
317 if( mpi_cmp_int( N, 0 ) < 0 || mpi_msb( N ) > 2 * grp->pbits )
318 return( POLARSSL_ERR_ECP_GENERIC );
319
320 MPI_CHK( grp->modp( N ) );
321
322 while( mpi_cmp_int( N, 0 ) < 0 )
323 MPI_CHK( mpi_add_mpi( N, N, &grp->P ) );
324
325 while( mpi_cmp_mpi( N, &grp->P ) >= 0 )
326 MPI_CHK( mpi_sub_mpi( N, N, &grp->P ) );
327
328cleanup:
329 return( ret );
330}
331
332/*
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100333 * 192 bits in terms of t_uint
334 */
335#define P192_SIZE_INT ( 192 / CHAR_BIT / sizeof( t_uint ) )
336
337/*
338 * Table to get S1, S2, S3 of FIPS 186-3 D.2.1:
339 * -1 means let this chunk be 0
340 * a positive value i means A_i.
341 */
342#define P192_CHUNKS 3
343#define P192_CHUNK_CHAR ( 64 / CHAR_BIT )
344#define P192_CHUNK_INT ( P192_CHUNK_CHAR / sizeof( t_uint ) )
345
346const signed char p192_tbl[][P192_CHUNKS] = {
347 { -1, 3, 3 }, /* S1 */
348 { 4, 4, -1 }, /* S2 */
349 { 5, 5, 5 }, /* S3 */
350};
351
352/*
353 * Fast quasi-reduction modulo p192 (FIPS 186-3 D.2.1)
354 */
355static int ecp_mod_p192( mpi *N )
356{
357 int ret;
358 unsigned char i, j, offset;
359 signed char chunk;
360 mpi tmp, acc;
361 t_uint tmp_p[P192_SIZE_INT], acc_p[P192_SIZE_INT + 1];
362
363 tmp.s = 1;
364 tmp.n = sizeof( tmp_p ) / sizeof( tmp_p[0] );
365 tmp.p = tmp_p;
366
367 acc.s = 1;
368 acc.n = sizeof( acc_p ) / sizeof( acc_p[0] );
369 acc.p = acc_p;
370
371 MPI_CHK( mpi_grow( N, P192_SIZE_INT * 2 ) );
372
373 /*
374 * acc = T
375 */
376 memset( acc_p, 0, sizeof( acc_p ) );
377 memcpy( acc_p, N->p, P192_CHUNK_CHAR * P192_CHUNKS );
378
379 for( i = 0; i < sizeof( p192_tbl ) / sizeof( p192_tbl[0] ); i++)
380 {
381 /*
382 * tmp = S_i
383 */
384 memset( tmp_p, 0, sizeof( tmp_p ) );
385 for( j = 0, offset = P192_CHUNKS - 1; j < P192_CHUNKS; j++, offset-- )
386 {
387 chunk = p192_tbl[i][j];
388 if( chunk >= 0 )
389 memcpy( tmp_p + offset * P192_CHUNK_INT,
390 N->p + chunk * P192_CHUNK_INT,
391 P192_CHUNK_CHAR );
392 }
393
394 /*
395 * acc += tmp
396 */
397 MPI_CHK( mpi_add_abs( &acc, &acc, &tmp ) );
398 }
399
400 MPI_CHK( mpi_copy( N, &acc ) );
401
402cleanup:
403 return( ret );
404}
405
406/*
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100407 * Size of p521 in terms of t_uint
408 */
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100409#define P521_SIZE_INT ( 521 / CHAR_BIT / sizeof( t_uint ) + 1 )
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100410
411/*
412 * Bits to keep in the most significant t_uint
413 */
414#if defined(POLARSS_HAVE_INT8)
415#define P521_MASK 0x01
416#else
417#define P521_MASK 0x01FF
418#endif
419
420/*
421 * Fast quasi-reduction modulo p521 (FIPS 186-3 D.2.5)
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100422 */
423static int ecp_mod_p521( mpi *N )
424{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100425 int ret;
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100426 t_uint Mp[P521_SIZE_INT];
427 mpi M;
428
429 if( N->n < P521_SIZE_INT )
430 return( 0 );
431
432 memset( Mp, 0, P521_SIZE_INT * sizeof( t_uint ) );
433 memcpy( Mp, N->p, P521_SIZE_INT * sizeof( t_uint ) );
434 Mp[P521_SIZE_INT - 1] &= P521_MASK;
435
436 M.s = 1;
437 M.n = P521_SIZE_INT;
438 M.p = Mp;
439
440 MPI_CHK( mpi_shift_r( N, 521 ) );
441
442 MPI_CHK( mpi_add_abs( N, N, &M ) );
443
444cleanup:
445 return( ret );
446}
447
448/*
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100449 * Domain parameters for secp192r1
450 */
451#define SECP192R1_P \
452 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFF"
453#define SECP192R1_B \
454 "64210519E59C80E70FA7E9AB72243049FEB8DEECC146B9B1"
455#define SECP192R1_GX \
456 "188DA80EB03090F67CBF20EB43A18800F4FF0AFD82FF1012"
457#define SECP192R1_GY \
458 "07192B95FFC8DA78631011ED6B24CDD573F977A11E794811"
459#define SECP192R1_N \
460 "FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831"
461
462/*
463 * Domain parameters for secp224r1
464 */
465#define SECP224R1_P \
466 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000001"
467#define SECP224R1_B \
468 "B4050A850C04B3ABF54132565044B0B7D7BFD8BA270B39432355FFB4"
469#define SECP224R1_GX \
470 "B70E0CBD6BB4BF7F321390B94A03C1D356C21122343280D6115C1D21"
471#define SECP224R1_GY \
472 "BD376388B5F723FB4C22DFE6CD4375A05A07476444D5819985007E34"
473#define SECP224R1_N \
474 "FFFFFFFFFFFFFFFFFFFFFFFFFFFF16A2E0B8F03E13DD29455C5C2A3D"
475
476/*
477 * Domain parameters for secp256r1
478 */
479#define SECP256R1_P \
480 "FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF"
481#define SECP256R1_B \
482 "5AC635D8AA3A93E7B3EBBD55769886BC651D06B0CC53B0F63BCE3C3E27D2604B"
483#define SECP256R1_GX \
484 "6B17D1F2E12C4247F8BCE6E563A440F277037D812DEB33A0F4A13945D898C296"
485#define SECP256R1_GY \
486 "4FE342E2FE1A7F9B8EE7EB4A7C0F9E162BCE33576B315ECECBB6406837BF51F5"
487#define SECP256R1_N \
488 "FFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551"
489
490/*
491 * Domain parameters for secp384r1
492 */
493#define SECP384R1_P \
494 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
495 "FFFFFFFFFFFFFFFEFFFFFFFF0000000000000000FFFFFFFF"
496#define SECP384R1_B \
497 "B3312FA7E23EE7E4988E056BE3F82D19181D9C6EFE814112" \
498 "0314088F5013875AC656398D8A2ED19D2A85C8EDD3EC2AEF"
499#define SECP384R1_GX \
500 "AA87CA22BE8B05378EB1C71EF320AD746E1D3B628BA79B98" \
501 "59F741E082542A385502F25DBF55296C3A545E3872760AB7"
502#define SECP384R1_GY \
503 "3617DE4A96262C6F5D9E98BF9292DC29F8F41DBD289A147C" \
504 "E9DA3113B5F0B8C00A60B1CE1D7E819D7A431D7C90EA0E5F"
505#define SECP384R1_N \
506 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
507 "C7634D81F4372DDF581A0DB248B0A77AECEC196ACCC52973"
508
509/*
510 * Domain parameters for secp521r1
511 */
512#define SECP521R1_P \
513 "000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
514 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
515 "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
516#define SECP521R1_B \
517 "00000051953EB9618E1C9A1F929A21A0B68540EEA2DA725B" \
518 "99B315F3B8B489918EF109E156193951EC7E937B1652C0BD" \
519 "3BB1BF073573DF883D2C34F1EF451FD46B503F00"
520#define SECP521R1_GX \
521 "000000C6858E06B70404E9CD9E3ECB662395B4429C648139" \
522 "053FB521F828AF606B4D3DBAA14B5E77EFE75928FE1DC127" \
523 "A2FFA8DE3348B3C1856A429BF97E7E31C2E5BD66"
524#define SECP521R1_GY \
525 "0000011839296A789A3BC0045C8A5FB42C7D1BD998F54449" \
526 "579B446817AFBD17273E662C97EE72995EF42640C550B901" \
527 "3FAD0761353C7086A272C24088BE94769FD16650"
528#define SECP521R1_N \
529 "000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \
530 "FFFFFFFFFFFFFFFFFFFFFFFA51868783BF2F966B7FCC0148" \
531 "F709A5D03BB5C9B8899C47AEBB6FB71E91386409"
532
533/*
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100534 * Set a group using well-known domain parameters
535 */
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100536int ecp_use_known_dp( ecp_group *grp, uint16_t index )
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100537{
538 switch( index )
539 {
540 case POLARSSL_ECP_DP_SECP192R1:
Manuel Pégourié-Gonnard84338242012-11-11 20:45:18 +0100541 grp->modp = ecp_mod_p192;
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100542 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100543 SECP192R1_P, SECP192R1_B,
544 SECP192R1_GX, SECP192R1_GY, SECP192R1_N ) );
545
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100546 case POLARSSL_ECP_DP_SECP224R1:
547 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100548 SECP224R1_P, SECP224R1_B,
549 SECP224R1_GX, SECP224R1_GY, SECP224R1_N ) );
550
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100551 case POLARSSL_ECP_DP_SECP256R1:
552 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100553 SECP256R1_P, SECP256R1_B,
554 SECP256R1_GX, SECP256R1_GY, SECP256R1_N ) );
555
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100556 case POLARSSL_ECP_DP_SECP384R1:
557 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100558 SECP384R1_P, SECP384R1_B,
559 SECP384R1_GX, SECP384R1_GY, SECP384R1_N ) );
560
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100561 case POLARSSL_ECP_DP_SECP521R1:
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100562 grp->modp = ecp_mod_p521;
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100563 return( ecp_group_read_string( grp, 16,
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100564 SECP521R1_P, SECP521R1_B,
565 SECP521R1_GX, SECP521R1_GY, SECP521R1_N ) );
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100566 }
567
Manuel Pégourié-Gonnard1a967282013-02-09 17:03:58 +0100568 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
569}
570
571/*
572 * Set a group from an ECParameters record (RFC 4492)
573 */
574int ecp_tls_read_group( ecp_group *grp, const unsigned char *buf, size_t len )
575{
576 uint16_t namedcurve;
577
578 /*
579 * We expect at least three bytes (see below)
580 */
581 if( len < 3 )
582 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
583
584 /*
585 * First byte is curve_type; only named_curve is handled
586 */
587 if( *buf++ != POLARSSL_ECP_TLS_NAMED_CURVE )
588 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
589
590 /*
591 * Next two bytes are the namedcurve
592 */
593 namedcurve = 256 * buf[0] + buf[1];
594 return ecp_use_known_dp( grp, namedcurve );
Manuel Pégourié-Gonnarda5402fe2012-11-07 20:24:05 +0100595}
Manuel Pégourié-Gonnardab38b702012-11-05 17:34:55 +0100596
Manuel Pégourié-Gonnard847395a2012-11-05 13:13:44 +0100597/*
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100598 * Fast mod-p functions expect their argument to be in the 0..p^2 range.
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100599 *
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100600 * In order to guarantee that, we need to ensure that operands of
601 * mpi_mul_mpi are in the 0..p range. So, after each operation we will
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100602 * bring the result back to this range.
603 *
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100604 * The following macros are shortcuts for doing that.
Manuel Pégourié-Gonnarddada4da2012-11-10 14:23:17 +0100605 */
606
607/*
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100608 * Reduce a mpi mod p in-place, general case, to use after mpi_mul_mpi
609 */
Manuel Pégourié-Gonnard62aad142012-11-10 00:27:12 +0100610#define MOD_MUL( N ) MPI_CHK( ecp_modp( &N, grp ) )
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100611
612/*
613 * Reduce a mpi mod p in-place, to use after mpi_sub_mpi
614 */
615#define MOD_SUB( N ) \
616 while( mpi_cmp_int( &N, 0 ) < 0 ) \
617 MPI_CHK( mpi_add_mpi( &N, &N, &grp->P ) )
618
619/*
620 * Reduce a mpi mod p in-place, to use after mpi_add_mpi and mpi_mul_int
621 */
622#define MOD_ADD( N ) \
623 while( mpi_cmp_mpi( &N, &grp->P ) >= 0 ) \
624 MPI_CHK( mpi_sub_mpi( &N, &N, &grp->P ) )
625
626/*
Manuel Pégourié-Gonnard1c330572012-11-24 12:05:44 +0100627 * Check that a point is valid as a public key (SEC1 3.2.3.1)
628 */
629int ecp_check_pubkey( const ecp_group *grp, const ecp_point *pt )
630{
631 int ret;
632 mpi YY, RHS;
633
634 if( mpi_cmp_int( &pt->Z, 0 ) == 0 )
635 return( POLARSSL_ERR_ECP_GENERIC );
636
637 /*
638 * pt coordinates must be normalized for our checks
639 */
640 if( mpi_cmp_int( &pt->Z, 1 ) != 0 )
641 return( POLARSSL_ERR_ECP_GENERIC );
642
643 if( mpi_cmp_int( &pt->X, 0 ) < 0 ||
644 mpi_cmp_int( &pt->Y, 0 ) < 0 ||
645 mpi_cmp_mpi( &pt->X, &grp->P ) >= 0 ||
646 mpi_cmp_mpi( &pt->Y, &grp->P ) >= 0 )
647 return( POLARSSL_ERR_ECP_GENERIC );
648
649 mpi_init( &YY ); mpi_init( &RHS );
650
651 /*
652 * YY = Y^2
653 * RHS = X (X^2 - 3) + B = X^3 - 3X + B
654 */
655 MPI_CHK( mpi_mul_mpi( &YY, &pt->Y, &pt->Y ) ); MOD_MUL( YY );
656 MPI_CHK( mpi_mul_mpi( &RHS, &pt->X, &pt->X ) ); MOD_MUL( RHS );
657 MPI_CHK( mpi_sub_int( &RHS, &RHS, 3 ) ); MOD_SUB( RHS );
658 MPI_CHK( mpi_mul_mpi( &RHS, &RHS, &pt->X ) ); MOD_MUL( RHS );
659 MPI_CHK( mpi_add_mpi( &RHS, &RHS, &grp->B ) ); MOD_ADD( RHS );
660
661 if( mpi_cmp_mpi( &YY, &RHS ) != 0 )
662 ret = POLARSSL_ERR_ECP_GENERIC;
663
664cleanup:
665
666 mpi_free( &YY ); mpi_free( &RHS );
667
668 return( ret );
669}
670
671/*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100672 * Normalize jacobian coordinates so that Z == 0 || Z == 1 (GECC 3.2.1)
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100673 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100674static int ecp_normalize( const ecp_group *grp, ecp_point *pt )
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100675{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100676 int ret;
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100677 mpi Zi, ZZi;
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100678
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100679 if( mpi_cmp_int( &pt->Z, 0 ) == 0 )
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100680 return( 0 );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100681
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100682 mpi_init( &Zi ); mpi_init( &ZZi );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100683
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100684 /*
685 * X = X / Z^2 mod p
686 */
687 MPI_CHK( mpi_inv_mod( &Zi, &pt->Z, &grp->P ) );
688 MPI_CHK( mpi_mul_mpi( &ZZi, &Zi, &Zi ) ); MOD_MUL( ZZi );
689 MPI_CHK( mpi_mul_mpi( &pt->X, &pt->X, &ZZi ) ); MOD_MUL( pt->X );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100690
691 /*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100692 * Y = Y / Z^3 mod p
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100693 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100694 MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &ZZi ) ); MOD_MUL( pt->Y );
695 MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &Zi ) ); MOD_MUL( pt->Y );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100696
697 /*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100698 * Z = 1
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100699 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100700 MPI_CHK( mpi_lset( &pt->Z, 1 ) );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100701
702cleanup:
703
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100704 mpi_free( &Zi ); mpi_free( &ZZi );
Manuel Pégourié-Gonnardd070f512012-11-08 17:40:51 +0100705
706 return( ret );
707}
708
709/*
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100710 * Normalize jacobian coordinates of an array of points,
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +0100711 * using Montgomery's trick to perform only one inversion mod P.
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100712 * (See for example Cohen's "A Course in Computational Algebraic Number
713 * Theory", Algorithm 10.3.4.)
714 *
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +0100715 * Warning: fails if one of the points is zero!
716 * This should never happen, see choice of w in ecp_mul().
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +0100717 */
718static int ecp_normalize_many( const ecp_group *grp,
719 ecp_point T[], size_t t_len )
720{
721 int ret;
722 size_t i;
723 mpi *c, u, Zi, ZZi;
724
725 if( t_len < 2 )
726 return( ecp_normalize( grp, T ) );
727
728 if( ( c = (mpi *) malloc( t_len * sizeof( mpi ) ) ) == NULL )
729 return( POLARSSL_ERR_ECP_GENERIC );
730
731 mpi_init( &u ); mpi_init( &Zi ); mpi_init( &ZZi );
732 for( i = 0; i < t_len; i++ )
733 mpi_init( &c[i] );
734
735 /*
736 * c[i] = Z_0 * ... * Z_i
737 */
738 MPI_CHK( mpi_copy( &c[0], &T[0].Z ) );
739 for( i = 1; i < t_len; i++ )
740 {
741 MPI_CHK( mpi_mul_mpi( &c[i], &c[i-1], &T[i].Z ) );
742 MOD_MUL( c[i] );
743 }
744
745 /*
746 * u = 1 / (Z_0 * ... * Z_n) mod P
747 */
748 MPI_CHK( mpi_inv_mod( &u, &c[t_len-1], &grp->P ) );
749
750 for( i = t_len - 1; ; i-- )
751 {
752 /*
753 * Zi = 1 / Z_i mod p
754 * u = 1 / (Z_0 * ... * Z_i) mod P
755 */
756 if( i == 0 ) {
757 MPI_CHK( mpi_copy( &Zi, &u ) );
758 }
759 else
760 {
761 MPI_CHK( mpi_mul_mpi( &Zi, &u, &c[i-1] ) ); MOD_MUL( Zi );
762 MPI_CHK( mpi_mul_mpi( &u, &u, &T[i].Z ) ); MOD_MUL( u );
763 }
764
765 /*
766 * proceed as in normalize()
767 */
768 MPI_CHK( mpi_mul_mpi( &ZZi, &Zi, &Zi ) ); MOD_MUL( ZZi );
769 MPI_CHK( mpi_mul_mpi( &T[i].X, &T[i].X, &ZZi ) ); MOD_MUL( T[i].X );
770 MPI_CHK( mpi_mul_mpi( &T[i].Y, &T[i].Y, &ZZi ) ); MOD_MUL( T[i].Y );
771 MPI_CHK( mpi_mul_mpi( &T[i].Y, &T[i].Y, &Zi ) ); MOD_MUL( T[i].Y );
772 MPI_CHK( mpi_lset( &T[i].Z, 1 ) );
773
774 if( i == 0 )
775 break;
776 }
777
778cleanup:
779
780 mpi_free( &u ); mpi_free( &Zi ); mpi_free( &ZZi );
781 for( i = 0; i < t_len; i++ )
782 mpi_free( &c[i] );
783 free( c );
784
785 return( ret );
786}
787
788
789/*
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100790 * Point doubling R = 2 P, Jacobian coordinates (GECC 3.21)
791 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100792static int ecp_double_jac( const ecp_group *grp, ecp_point *R,
793 const ecp_point *P )
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100794{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100795 int ret;
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100796 mpi T1, T2, T3, X, Y, Z;
797
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +0100798#if defined(POLARSSL_SELF_TEST)
799 dbl_count++;
800#endif
801
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100802 if( mpi_cmp_int( &P->Z, 0 ) == 0 )
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100803 return( ecp_set_zero( R ) );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100804
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100805 mpi_init( &T1 ); mpi_init( &T2 ); mpi_init( &T3 );
806 mpi_init( &X ); mpi_init( &Y ); mpi_init( &Z );
807
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100808 MPI_CHK( mpi_mul_mpi( &T1, &P->Z, &P->Z ) ); MOD_MUL( T1 );
809 MPI_CHK( mpi_sub_mpi( &T2, &P->X, &T1 ) ); MOD_SUB( T2 );
810 MPI_CHK( mpi_add_mpi( &T1, &P->X, &T1 ) ); MOD_ADD( T1 );
811 MPI_CHK( mpi_mul_mpi( &T2, &T2, &T1 ) ); MOD_MUL( T2 );
812 MPI_CHK( mpi_mul_int( &T2, &T2, 3 ) ); MOD_ADD( T2 );
813 MPI_CHK( mpi_mul_int( &Y, &P->Y, 2 ) ); MOD_ADD( Y );
814 MPI_CHK( mpi_mul_mpi( &Z, &Y, &P->Z ) ); MOD_MUL( Z );
815 MPI_CHK( mpi_mul_mpi( &Y, &Y, &Y ) ); MOD_MUL( Y );
816 MPI_CHK( mpi_mul_mpi( &T3, &Y, &P->X ) ); MOD_MUL( T3 );
817 MPI_CHK( mpi_mul_mpi( &Y, &Y, &Y ) ); MOD_MUL( Y );
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100818
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100819 /*
820 * For Y = Y / 2 mod p, we must make sure that Y is even before
821 * using right-shift. No need to reduce mod p afterwards.
822 */
823 if( mpi_get_bit( &Y, 0 ) == 1 )
824 MPI_CHK( mpi_add_mpi( &Y, &Y, &grp->P ) );
825 MPI_CHK( mpi_shift_r( &Y, 1 ) );
826
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100827 MPI_CHK( mpi_mul_mpi( &X, &T2, &T2 ) ); MOD_MUL( X );
828 MPI_CHK( mpi_mul_int( &T1, &T3, 2 ) ); MOD_ADD( T1 );
829 MPI_CHK( mpi_sub_mpi( &X, &X, &T1 ) ); MOD_SUB( X );
830 MPI_CHK( mpi_sub_mpi( &T1, &T3, &X ) ); MOD_SUB( T1 );
831 MPI_CHK( mpi_mul_mpi( &T1, &T1, &T2 ) ); MOD_MUL( T1 );
832 MPI_CHK( mpi_sub_mpi( &Y, &T1, &Y ) ); MOD_SUB( Y );
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100833
834 MPI_CHK( mpi_copy( &R->X, &X ) );
835 MPI_CHK( mpi_copy( &R->Y, &Y ) );
836 MPI_CHK( mpi_copy( &R->Z, &Z ) );
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100837
838cleanup:
839
840 mpi_free( &T1 ); mpi_free( &T2 ); mpi_free( &T3 );
841 mpi_free( &X ); mpi_free( &Y ); mpi_free( &Z );
842
843 return( ret );
844}
845
846/*
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100847 * Addition or subtraction: R = P + Q or R = P + Q,
848 * mixed affine-Jacobian coordinates (GECC 3.22)
849 *
850 * The coordinates of Q must be normalized (= affine),
851 * but those of P don't need to. R is not normalized.
852 *
853 * If sign >= 0, perform addition, otherwise perform subtraction,
854 * taking advantage of the fact that, for Q != 0, we have
855 * -Q = (Q.X, -Q.Y, Q.Z)
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100856 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100857static int ecp_add_mixed( const ecp_group *grp, ecp_point *R,
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100858 const ecp_point *P, const ecp_point *Q,
859 signed char sign )
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100860{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100861 int ret;
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100862 mpi T1, T2, T3, T4, X, Y, Z;
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100863
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +0100864#if defined(POLARSSL_SELF_TEST)
865 add_count++;
866#endif
867
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100868 /*
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100869 * Trivial cases: P == 0 or Q == 0
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100870 * (Check Q first, so that we know Q != 0 when we compute -Q.)
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100871 */
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100872 if( mpi_cmp_int( &Q->Z, 0 ) == 0 )
873 return( ecp_copy( R, P ) );
874
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100875 if( mpi_cmp_int( &P->Z, 0 ) == 0 )
876 {
877 ret = ecp_copy( R, Q );
878
879 /*
880 * -R.Y mod P = P - R.Y unless R.Y == 0
881 */
882 if( ret == 0 && sign < 0)
883 if( mpi_cmp_int( &R->Y, 0 ) != 0 )
884 ret = mpi_sub_mpi( &R->Y, &grp->P, &R->Y );
885
886 return( ret );
887 }
888
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100889 /*
890 * Make sure Q coordinates are normalized
891 */
892 if( mpi_cmp_int( &Q->Z, 1 ) != 0 )
893 return( POLARSSL_ERR_ECP_GENERIC );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100894
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100895 mpi_init( &T1 ); mpi_init( &T2 ); mpi_init( &T3 ); mpi_init( &T4 );
896 mpi_init( &X ); mpi_init( &Y ); mpi_init( &Z );
Manuel Pégourié-Gonnardab38b702012-11-05 17:34:55 +0100897
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100898 MPI_CHK( mpi_mul_mpi( &T1, &P->Z, &P->Z ) ); MOD_MUL( T1 );
899 MPI_CHK( mpi_mul_mpi( &T2, &T1, &P->Z ) ); MOD_MUL( T2 );
900 MPI_CHK( mpi_mul_mpi( &T1, &T1, &Q->X ) ); MOD_MUL( T1 );
901 MPI_CHK( mpi_mul_mpi( &T2, &T2, &Q->Y ) ); MOD_MUL( T2 );
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100902
903 /*
904 * For subtraction, -Q.Y should have been used instead of Q.Y,
905 * so we replace T2 by -T2, which is P - T2 mod P
906 */
907 if( sign < 0 )
908 {
909 MPI_CHK( mpi_sub_mpi( &T2, &grp->P, &T2 ) );
910 MOD_SUB( T2 );
911 }
912
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100913 MPI_CHK( mpi_sub_mpi( &T1, &T1, &P->X ) ); MOD_SUB( T1 );
914 MPI_CHK( mpi_sub_mpi( &T2, &T2, &P->Y ) ); MOD_SUB( T2 );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100915
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100916 if( mpi_cmp_int( &T1, 0 ) == 0 )
917 {
918 if( mpi_cmp_int( &T2, 0 ) == 0 )
919 {
920 ret = ecp_double_jac( grp, R, P );
921 goto cleanup;
922 }
923 else
924 {
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100925 ret = ecp_set_zero( R );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100926 goto cleanup;
927 }
928 }
929
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100930 MPI_CHK( mpi_mul_mpi( &Z, &P->Z, &T1 ) ); MOD_MUL( Z );
931 MPI_CHK( mpi_mul_mpi( &T3, &T1, &T1 ) ); MOD_MUL( T3 );
932 MPI_CHK( mpi_mul_mpi( &T4, &T3, &T1 ) ); MOD_MUL( T4 );
933 MPI_CHK( mpi_mul_mpi( &T3, &T3, &P->X ) ); MOD_MUL( T3 );
934 MPI_CHK( mpi_mul_int( &T1, &T3, 2 ) ); MOD_ADD( T1 );
935 MPI_CHK( mpi_mul_mpi( &X, &T2, &T2 ) ); MOD_MUL( X );
936 MPI_CHK( mpi_sub_mpi( &X, &X, &T1 ) ); MOD_SUB( X );
937 MPI_CHK( mpi_sub_mpi( &X, &X, &T4 ) ); MOD_SUB( X );
938 MPI_CHK( mpi_sub_mpi( &T3, &T3, &X ) ); MOD_SUB( T3 );
939 MPI_CHK( mpi_mul_mpi( &T3, &T3, &T2 ) ); MOD_MUL( T3 );
940 MPI_CHK( mpi_mul_mpi( &T4, &T4, &P->Y ) ); MOD_MUL( T4 );
941 MPI_CHK( mpi_sub_mpi( &Y, &T3, &T4 ) ); MOD_SUB( Y );
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100942
Manuel Pégourié-Gonnard84d1aea2012-11-09 02:09:38 +0100943 MPI_CHK( mpi_copy( &R->X, &X ) );
944 MPI_CHK( mpi_copy( &R->Y, &Y ) );
945 MPI_CHK( mpi_copy( &R->Z, &Z ) );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100946
947cleanup:
948
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100949 mpi_free( &T1 ); mpi_free( &T2 ); mpi_free( &T3 ); mpi_free( &T4 );
950 mpi_free( &X ); mpi_free( &Y ); mpi_free( &Z );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100951
952 return( ret );
953}
954
955/*
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100956 * Addition: R = P + Q, result's coordinates normalized
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100957 */
958int ecp_add( const ecp_group *grp, ecp_point *R,
959 const ecp_point *P, const ecp_point *Q )
960{
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +0100961 int ret;
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100962
Manuel Pégourié-Gonnard9674fd02012-11-19 21:23:27 +0100963 MPI_CHK( ecp_add_mixed( grp, R, P, Q , 1 ) );
964 MPI_CHK( ecp_normalize( grp, R ) );
965
966cleanup:
967 return( ret );
968}
969
970/*
971 * Subtraction: R = P - Q, result's coordinates normalized
972 */
973int ecp_sub( const ecp_group *grp, ecp_point *R,
974 const ecp_point *P, const ecp_point *Q )
975{
976 int ret;
977
978 MPI_CHK( ecp_add_mixed( grp, R, P, Q, -1 ) );
Manuel Pégourié-Gonnard1c2782c2012-11-19 20:16:28 +0100979 MPI_CHK( ecp_normalize( grp, R ) );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100980
Manuel Pégourié-Gonnard989c32b2012-11-08 22:02:42 +0100981cleanup:
Manuel Pégourié-Gonnard7e0adfb2012-11-08 23:21:46 +0100982 return( ret );
Manuel Pégourié-Gonnardae180d02012-11-02 18:14:40 +0100983}
984
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +0100985/*
Manuel Pégourié-Gonnard85556072012-11-17 19:54:20 +0100986 * Compute a modified width-w non-adjacent form (NAF) of a number,
987 * with a fixed pattern for resistance to SPA/timing attacks,
988 * see <http://rd.springer.com/chapter/10.1007/3-540-36563-X_23>.
989 * (The resulting multiplication algorithm can also been seen as a
990 * modification of 2^w-ary multiplication, with signed coefficients,
991 * all of them odd.)
992 *
993 * Input:
994 * m must be an odd positive mpi less than w * k bits long
995 * x must be an array of k elements
996 * w must be less than a certain maximum (currently 8)
997 *
998 * The result is a sequence x[0], ..., x[k-1] with x[i] in the range
999 * - 2^(width - 1) .. 2^(width - 1) - 1 such that
1000 * m = (2 * x[0] + 1) + 2^width * (2 * x[1] + 1) + ...
1001 * + 2^((k-1) * width) * (2 * x[k-1] + 1)
1002 *
1003 * Compared to "Algorithm SPA-resistant Width-w NAF with Odd Scalar"
1004 * p. 335 of the cited reference, here we return only u, not d_w since
1005 * it is known that the other d_w[j] will be 0. Moreover, the returned
1006 * string doesn't actually store u_i but x_i = u_i / 2 since it is known
1007 * that u_i is odd. Also, since we always select a positive value for d
1008 * mod 2^w, we don't need to check the sign of u[i-1] when the reference
1009 * does. Finally, there is an off-by-one error in the reference: the
1010 * last index should be k-1, not k.
1011 */
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001012static int ecp_w_naf_fixed( signed char x[], size_t k,
1013 unsigned char w, const mpi *m )
Manuel Pégourié-Gonnard85556072012-11-17 19:54:20 +01001014{
1015 int ret;
1016 unsigned int i, u, mask, carry;
1017 mpi M;
1018
1019 mpi_init( &M );
1020
1021 MPI_CHK( mpi_copy( &M, m ) );
1022 mask = ( 1 << w ) - 1;
1023 carry = 1 << ( w - 1 );
1024
1025 for( i = 0; i < k; i++ )
1026 {
1027 u = M.p[0] & mask;
1028
1029 if( ( u & 1 ) == 0 && i > 0 )
1030 x[i - 1] -= carry;
1031
1032 x[i] = u >> 1;
1033 mpi_shift_r( &M, w );
1034 }
1035
1036 /*
1037 * We should have consumed all the bits now
1038 */
1039 if( mpi_cmp_int( &M, 0 ) != 0 )
1040 ret = POLARSSL_ERR_ECP_GENERIC;
1041
1042cleanup:
1043
1044 mpi_free( &M );
1045
1046 return( ret );
1047}
1048
1049/*
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001050 * Precompute odd multiples of P up to (2 * t_len - 1) P.
1051 * The table is filled with T[i] = (2 * i + 1) P.
1052 */
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001053static int ecp_precompute( const ecp_group *grp,
1054 ecp_point T[], size_t t_len,
1055 const ecp_point *P )
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001056{
1057 int ret;
1058 size_t i;
1059 ecp_point PP;
1060
1061 ecp_point_init( &PP );
1062
1063 MPI_CHK( ecp_add( grp, &PP, P, P ) );
1064
1065 MPI_CHK( ecp_copy( &T[0], P ) );
1066
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001067 for( i = 1; i < t_len; i++ )
Manuel Pégourié-Gonnardcdd44322012-11-21 16:00:55 +01001068 MPI_CHK( ecp_add_mixed( grp, &T[i], &T[i-1], &PP, +1 ) );
1069
1070 /*
1071 * T[0] = P already has normalized coordinates
1072 */
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001073 MPI_CHK( ecp_normalize_many( grp, T + 1, t_len - 1 ) );
Manuel Pégourié-Gonnard7652a592012-11-21 10:00:45 +01001074
1075cleanup:
1076
1077 ecp_point_free( &PP );
1078
1079 return( ret );
1080}
1081
1082/*
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001083 * Maximum length of the precomputed table
1084 */
1085#define MAX_PRE_LEN ( 1 << (POLARSSL_ECP_WINDOW_SIZE - 1) )
1086
1087/*
1088 * Maximum length of the NAF: ceil( grp->nbits + 1 ) / w
1089 * (that is: grp->nbits / w + 1)
1090 * Allow p_bits + 1 bits in case M = grp->N + 1 is one bit longer than N.
1091 */
1092#define MAX_NAF_LEN ( POLARSSL_ECP_MAX_N_BITS / 2 + 1 )
1093
1094/*
1095 * Integer multiplication: R = m * P
1096 *
1097 * Based on fixed-pattern width-w NAF, see comments of ecp_w_naf_fixed()
1098 * and <http://rd.springer.com/chapter/10.1007/3-540-36563-X_23>.
1099 *
1100 * This function executes a fixed number of operations for
1101 * random m in the range 0 .. 2^nbits - 1.
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001102 */
1103int ecp_mul( const ecp_group *grp, ecp_point *R,
1104 const mpi *m, const ecp_point *P )
1105{
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001106 int ret;
1107 unsigned char w, m_is_odd;
1108 size_t pre_len, naf_len, i, j;
1109 signed char naf[ MAX_NAF_LEN ];
1110 ecp_point Q, T[ MAX_PRE_LEN ];
1111 mpi M;
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001112
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001113 if( mpi_cmp_int( m, 0 ) < 0 || mpi_msb( m ) > grp->nbits )
Manuel Pégourié-Gonnard4bdd47d2012-11-11 14:33:59 +01001114 return( POLARSSL_ERR_ECP_GENERIC );
1115
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001116 w = grp->nbits >= 521 ? 6 :
1117 grp->nbits >= 224 ? 5 :
1118 4;
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001119
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001120 /*
1121 * Make sure w is within the limits.
1122 * The last test ensures that none of the precomputed points is zero,
1123 * which wouldn't be handled correctly by ecp_normalize_many().
1124 * It is only useful for small curves, as used in the test suite.
1125 */
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001126 if( w > POLARSSL_ECP_WINDOW_SIZE )
1127 w = POLARSSL_ECP_WINDOW_SIZE;
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001128 if( w < 2 || w >= grp->nbits )
1129 w = 2;
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001130
1131 pre_len = 1 << ( w - 1 );
1132 naf_len = grp->nbits / w + 1;
1133
1134 mpi_init( &M );
1135 ecp_point_init( &Q );
1136 for( i = 0; i < pre_len; i++ )
1137 ecp_point_init( &T[i] );
1138
1139 m_is_odd = ( mpi_get_bit( m, 0 ) == 1 );
1140
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001141 /*
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001142 * Make sure M is odd:
1143 * later we'll get m * P by subtracting * P or 2 * P to M * P.
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001144 */
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001145 MPI_CHK( mpi_copy( &M, m ) );
1146 MPI_CHK( mpi_add_int( &M, &M, 1 + m_is_odd ) );
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001147
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001148 /*
1149 * Compute the fixed-pattern NAF and precompute odd multiples
1150 */
1151 MPI_CHK( ecp_w_naf_fixed( naf, naf_len, w, &M ) );
1152 MPI_CHK( ecp_precompute( grp, T, pre_len, P ) );
Manuel Pégourié-Gonnard47123252012-11-10 14:44:24 +01001153
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001154 /*
1155 * Compute M * P, using a variant of left-to-right 2^w-ary multiplication:
1156 * at each step we add (2 * naf[i] + 1) P, then multiply by 2^w.
1157 *
1158 * If naf[i] >= 0, we have (2 * naf[i] + 1) P == T[ naf[i] ]
1159 * Otherwise, (2 * naf[i] + 1) P == - ( 2 * ( - naf[i] - 1 ) + 1) P
1160 * == T[ - naf[i] - 1 ]
1161 */
1162 MPI_CHK( ecp_set_zero( &Q ) );
1163 i = naf_len - 1;
1164 while( 1 )
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001165 {
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001166 if( naf[i] < 0 )
1167 {
1168 MPI_CHK( ecp_add_mixed( grp, &Q, &Q, &T[ - naf[i] - 1 ], -1 ) );
1169 }
1170 else
1171 {
1172 MPI_CHK( ecp_add_mixed( grp, &Q, &Q, &T[ naf[i] ], +1 ) );
1173 }
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001174
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001175 if( i == 0 )
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001176 break;
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001177 i--;
1178
1179 for( j = 0; j < w; j++ )
1180 {
1181 MPI_CHK( ecp_double_jac( grp, &Q, &Q ) );
1182 }
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001183 }
1184
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001185 /*
1186 * Now get m * P from M * P.
1187 * Since we don't need T[] any more, we can recycle it:
1188 * we already have T[0] = P, now set T[1] = 2 * P.
1189 */
1190 MPI_CHK( ecp_add( grp, &T[1], P, P ) );
1191 MPI_CHK( ecp_sub( grp, R, &Q, &T[m_is_odd] ) );
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001192
Manuel Pégourié-Gonnard3680c822012-11-21 18:49:45 +01001193
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001194cleanup:
1195
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001196 mpi_free( &M );
1197 ecp_point_free( &Q );
1198 for( i = 0; i < pre_len; i++ )
1199 ecp_point_free( &T[i] );
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001200
1201 return( ret );
1202}
1203
Manuel Pégourié-Gonnard45a035a2013-01-26 14:42:45 +01001204/*
1205 * Generate a keypair (SEC1 3.2.1)
1206 */
1207int ecp_gen_keypair( const ecp_group *grp, mpi *d, ecp_point *Q,
1208 int (*f_rng)(void *, unsigned char *, size_t),
1209 void *p_rng )
1210{
1211 int count = 0;
1212 size_t n_size = (grp->nbits + 7) / 8;
1213
1214 /*
1215 * Generate d such that 1 <= n < N
1216 */
1217 do
1218 {
1219 mpi_fill_random( d, n_size, f_rng, p_rng );
1220
1221 while( mpi_cmp_mpi( d, &grp->N ) >= 0 )
1222 mpi_shift_r( d, 1 );
1223
1224 if( count++ > 10 )
1225 return( POLARSSL_ERR_ECP_GENERIC );
1226 }
1227 while( mpi_cmp_int( d, 1 ) < 0 );
1228
1229 return( ecp_mul( grp, Q, d, &grp->G ) );
1230}
Manuel Pégourié-Gonnardefaa31e2012-11-06 21:34:35 +01001231
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001232#if defined(POLARSSL_SELF_TEST)
1233
Manuel Pégourié-Gonnardb505c272012-11-05 17:27:54 +01001234/*
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001235 * Checkup routine
1236 */
1237int ecp_self_test( int verbose )
1238{
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001239 int ret;
1240 size_t i;
1241 ecp_group grp;
1242 ecp_point R;
1243 mpi m;
1244 unsigned long add_c_prev, dbl_c_prev;
1245 char *exponents[] =
1246 {
Manuel Pégourié-Gonnardb63f9e92012-11-21 13:00:58 +01001247 "000000000000000000000000000000000000000000000000", /* zero */
1248 "000000000000000000000000000000000000000000000001", /* one */
1249 "FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831", /* N */
1250 "5EA6F389A38B8BC81E767753B15AA5569E1782E30ABE7D25", /* random */
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001251 "400000000000000000000000000000000000000000000000",
1252 "7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF",
1253 "555555555555555555555555555555555555555555555555",
Manuel Pégourié-Gonnardb4a310b2012-11-13 20:57:00 +01001254 };
1255
1256 ecp_group_init( &grp );
1257 ecp_point_init( &R );
1258 mpi_init( &m );
1259
1260 MPI_CHK( ecp_use_known_dp( &grp, POLARSSL_ECP_DP_SECP192R1 ) );
1261
1262 if( verbose != 0 )
1263 printf( " ECP test #1 (SPA resistance): " );
1264
1265 add_count = 0;
1266 dbl_count = 0;
1267 MPI_CHK( mpi_read_string( &m, 16, exponents[0] ) );
1268 MPI_CHK( ecp_mul( &grp, &R, &m, &grp.G ) );
1269
1270 for( i = 1; i < sizeof( exponents ) / sizeof( exponents[0] ); i++ )
1271 {
1272 add_c_prev = add_count;
1273 dbl_c_prev = dbl_count;
1274 add_count = 0;
1275 dbl_count = 0;
1276
1277 MPI_CHK( mpi_read_string( &m, 16, exponents[i] ) );
1278 MPI_CHK( ecp_mul( &grp, &R, &m, &grp.G ) );
1279
1280 if( add_count != add_c_prev || dbl_count != dbl_c_prev )
1281 {
1282 if( verbose != 0 )
1283 printf( "failed (%zu)\n", i );
1284
1285 ret = 1;
1286 goto cleanup;
1287 }
1288 }
1289
1290 if( verbose != 0 )
1291 printf( "passed\n" );
1292
1293cleanup:
1294
1295 if( ret < 0 && verbose != 0 )
1296 printf( "Unexpected error, return code = %08X\n", ret );
1297
1298 ecp_group_free( &grp );
1299 ecp_point_free( &R );
1300 mpi_free( &m );
1301
1302 if( verbose != 0 )
1303 printf( "\n" );
1304
1305 return( ret );
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001306}
1307
1308#endif
1309
1310#endif