Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Elliptic curves over GF(p) |
| 3 | * |
Paul Bakker | cf4365f | 2013-01-16 17:00:43 +0100 | [diff] [blame] | 4 | * Copyright (C) 2006-2013, Brainspark B.V. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 5 | * |
| 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é-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 29 | * SEC1 http://www.secg.org/index.php?action=secg,docs_secg |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 30 | * GECC = Guide to Elliptic Curve Cryptography - Hankerson, Menezes, Vanstone |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 31 | * FIPS 186-3 http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 32 | * RFC 4492 for the related TLS structures and constants |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 33 | */ |
| 34 | |
| 35 | #include "polarssl/config.h" |
| 36 | |
| 37 | #if defined(POLARSSL_ECP_C) |
| 38 | |
| 39 | #include "polarssl/ecp.h" |
Manuel Pégourié-Gonnard | 8433824 | 2012-11-11 20:45:18 +0100 | [diff] [blame] | 40 | #include <limits.h> |
Manuel Pégourié-Gonnard | cdd4432 | 2012-11-21 16:00:55 +0100 | [diff] [blame] | 41 | #include <stdlib.h> |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 42 | |
Manuel Pégourié-Gonnard | b4a310b | 2012-11-13 20:57:00 +0100 | [diff] [blame] | 43 | #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 | */ |
| 48 | unsigned long add_count, dbl_count; |
| 49 | #endif |
| 50 | |
Manuel Pégourié-Gonnard | 1e8c8ec | 2012-10-31 19:24:21 +0100 | [diff] [blame] | 51 | /* |
Manuel Pégourié-Gonnard | b505c27 | 2012-11-05 17:27:54 +0100 | [diff] [blame] | 52 | * Initialize (the components of) a point |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 53 | */ |
| 54 | void ecp_point_init( ecp_point *pt ) |
| 55 | { |
| 56 | if( pt == NULL ) |
| 57 | return; |
| 58 | |
Manuel Pégourié-Gonnard | b505c27 | 2012-11-05 17:27:54 +0100 | [diff] [blame] | 59 | mpi_init( &pt->X ); |
| 60 | mpi_init( &pt->Y ); |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 61 | mpi_init( &pt->Z ); |
Manuel Pégourié-Gonnard | b505c27 | 2012-11-05 17:27:54 +0100 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | /* |
| 65 | * Initialize (the components of) a group |
| 66 | */ |
| 67 | void 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é-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 76 | |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 77 | grp->pbits = 0; |
Manuel Pégourié-Gonnard | 773ed54 | 2012-11-18 13:19:07 +0100 | [diff] [blame] | 78 | grp->nbits = 0; |
| 79 | |
| 80 | grp->modp = NULL; |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /* |
Manuel Pégourié-Gonnard | 1e8c8ec | 2012-10-31 19:24:21 +0100 | [diff] [blame] | 84 | * Unallocate (the components of) a point |
| 85 | */ |
| 86 | void 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é-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 93 | mpi_free( &( pt->Z ) ); |
Manuel Pégourié-Gonnard | 1e8c8ec | 2012-10-31 19:24:21 +0100 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Unallocate (the components of) a group |
| 98 | */ |
| 99 | void ecp_group_free( ecp_group *grp ) |
| 100 | { |
| 101 | if( grp == NULL ) |
| 102 | return; |
| 103 | |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 104 | mpi_free( &grp->P ); |
| 105 | mpi_free( &grp->B ); |
| 106 | ecp_point_free( &grp->G ); |
| 107 | mpi_free( &grp->N ); |
Manuel Pégourié-Gonnard | 1e8c8ec | 2012-10-31 19:24:21 +0100 | [diff] [blame] | 108 | } |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 109 | |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 110 | /* |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 111 | * Set point to zero |
| 112 | */ |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 113 | int ecp_set_zero( ecp_point *pt ) |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 114 | { |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 115 | 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 | |
| 121 | cleanup: |
| 122 | return( ret ); |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | /* |
Manuel Pégourié-Gonnard | 6545ca7 | 2013-01-26 16:05:22 +0100 | [diff] [blame] | 126 | * Tell if a point is zero |
| 127 | */ |
| 128 | int ecp_is_zero( ecp_point *pt ) |
| 129 | { |
| 130 | return( mpi_cmp_int( &pt->Z, 0 ) == 0 ); |
| 131 | } |
| 132 | |
| 133 | /* |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 134 | * Copy the contents of Q into P |
| 135 | */ |
| 136 | int ecp_copy( ecp_point *P, const ecp_point *Q ) |
| 137 | { |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 138 | int ret; |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 139 | |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 140 | MPI_CHK( mpi_copy( &P->X, &Q->X ) ); |
| 141 | MPI_CHK( mpi_copy( &P->Y, &Q->Y ) ); |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 142 | MPI_CHK( mpi_copy( &P->Z, &Q->Z ) ); |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 143 | |
| 144 | cleanup: |
| 145 | return( ret ); |
| 146 | } |
Manuel Pégourié-Gonnard | 5179e46 | 2012-10-31 19:37:54 +0100 | [diff] [blame] | 147 | |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 148 | /* |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 149 | * Import a non-zero point from ASCII strings |
| 150 | */ |
| 151 | int ecp_point_read_string( ecp_point *P, int radix, |
| 152 | const char *x, const char *y ) |
| 153 | { |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 154 | int ret; |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 155 | |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 156 | MPI_CHK( mpi_read_string( &P->X, radix, x ) ); |
| 157 | MPI_CHK( mpi_read_string( &P->Y, radix, y ) ); |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 158 | MPI_CHK( mpi_lset( &P->Z, 1 ) ); |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 159 | |
| 160 | cleanup: |
| 161 | return( ret ); |
| 162 | } |
| 163 | |
| 164 | /* |
| 165 | * Import an ECP group from ASCII strings |
| 166 | */ |
| 167 | int 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é-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 171 | int ret; |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 172 | |
| 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é-Gonnard | 773ed54 | 2012-11-18 13:19:07 +0100 | [diff] [blame] | 178 | grp->pbits = mpi_msb( &grp->P ); |
| 179 | grp->nbits = mpi_msb( &grp->N ); |
| 180 | |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 181 | cleanup: |
| 182 | return( ret ); |
| 183 | } |
| 184 | |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 185 | /* |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 186 | * Export a point into unsigned binary data (SEC1 2.3.3) |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 187 | */ |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 188 | int ecp_write_binary( const ecp_group *grp, const ecp_point *P, int format, |
Manuel Pégourié-Gonnard | 0079405 | 2013-02-09 19:00:07 +0100 | [diff] [blame^] | 189 | uint8_t *olen, unsigned char *buf, size_t buflen ) |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 190 | { |
| 191 | int ret; |
| 192 | size_t plen; |
| 193 | |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 194 | if( format != POLARSSL_ECP_PF_UNCOMPRESSED && |
| 195 | format != POLARSSL_ECP_PF_COMPRESSED ) |
Manuel Pégourié-Gonnard | 0079405 | 2013-02-09 19:00:07 +0100 | [diff] [blame^] | 196 | return( POLARSSL_ERR_ECP_BAD_INPUT_DATA ); |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 197 | |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 198 | /* |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 199 | * Common case: P == 0 |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 200 | */ |
| 201 | if( mpi_cmp_int( &P->Z, 0 ) == 0 ) |
| 202 | { |
| 203 | if( buflen < 1 ) |
Manuel Pégourié-Gonnard | 0079405 | 2013-02-09 19:00:07 +0100 | [diff] [blame^] | 204 | return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL ); |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 205 | |
| 206 | buf[0] = 0x00; |
| 207 | *olen = 1; |
| 208 | |
| 209 | return( 0 ); |
| 210 | } |
| 211 | |
| 212 | plen = mpi_size( &grp->P ); |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 213 | |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 214 | if( format == POLARSSL_ECP_PF_UNCOMPRESSED ) |
| 215 | { |
| 216 | *olen = 2 * plen + 1; |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 217 | |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 218 | if( buflen < *olen ) |
Manuel Pégourié-Gonnard | 0079405 | 2013-02-09 19:00:07 +0100 | [diff] [blame^] | 219 | return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL ); |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 220 | |
| 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é-Gonnard | 0079405 | 2013-02-09 19:00:07 +0100 | [diff] [blame^] | 230 | return( POLARSSL_ERR_ECP_BUFFER_TOO_SMALL ); |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 231 | |
| 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é-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 235 | |
| 236 | cleanup: |
| 237 | return( ret ); |
| 238 | } |
| 239 | |
| 240 | /* |
Manuel Pégourié-Gonnard | 5e402d8 | 2012-11-24 16:19:42 +0100 | [diff] [blame] | 241 | * Import a point from unsigned binary data (SEC1 2.3.4) |
| 242 | */ |
| 243 | int ecp_read_binary( const ecp_group *grp, ecp_point *P, int format, |
| 244 | const unsigned char *buf, size_t ilen ) { |
| 245 | int ret; |
| 246 | size_t plen; |
| 247 | |
| 248 | if( format != POLARSSL_ECP_PF_UNCOMPRESSED ) |
| 249 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 250 | |
| 251 | if( ilen == 1 && buf[0] == 0x00 ) |
| 252 | return( ecp_set_zero( P ) ); |
| 253 | |
| 254 | plen = mpi_size( &grp-> P ); |
| 255 | |
| 256 | if( ilen != 2 * plen + 1 || buf[0] != 0x04 ) |
| 257 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 258 | |
| 259 | MPI_CHK( mpi_read_binary( &P->X, buf + 1, plen ) ); |
| 260 | MPI_CHK( mpi_read_binary( &P->Y, buf + 1 + plen, plen ) ); |
| 261 | MPI_CHK( mpi_lset( &P->Z, 1 ) ); |
| 262 | |
| 263 | cleanup: |
| 264 | return( ret ); |
| 265 | } |
| 266 | |
| 267 | /* |
Manuel Pégourié-Gonnard | 0079405 | 2013-02-09 19:00:07 +0100 | [diff] [blame^] | 268 | * Import a point from a TLS ECPoint record (RFC 4492) |
| 269 | * struct { |
| 270 | * opaque point <1..2^8-1>; |
| 271 | * } ECPoint; |
| 272 | */ |
| 273 | int ecp_tls_read_point( const ecp_group *grp, ecp_point *pt, |
| 274 | const unsigned char *buf, size_t buf_len ) |
| 275 | { |
| 276 | unsigned char data_len; |
| 277 | |
| 278 | /* |
| 279 | * We must have at least two bytes (1 for length, at least of for data) |
| 280 | */ |
| 281 | if( buf_len < 2 ) |
| 282 | return( POLARSSL_ERR_ECP_BAD_INPUT_DATA ); |
| 283 | |
| 284 | data_len = *buf++; |
| 285 | if( data_len < 1 || data_len > buf_len - 1 ) |
| 286 | return( POLARSSL_ERR_ECP_BAD_INPUT_DATA ); |
| 287 | |
| 288 | return ecp_read_binary( grp, pt, POLARSSL_ECP_PF_UNCOMPRESSED, |
| 289 | buf, data_len ); |
| 290 | } |
| 291 | |
| 292 | /* |
| 293 | * Export a point as a TLS ECPoint record (RFC 4492) |
| 294 | * struct { |
| 295 | * opaque point <1..2^8-1>; |
| 296 | * } ECPoint; |
| 297 | */ |
| 298 | int ecp_tls_write_point( const ecp_group *grp, const ecp_point *pt, |
| 299 | int format, unsigned char *buf, size_t buf_len ) |
| 300 | { |
| 301 | /* |
| 302 | * buf_len must be at least one, for our length byte |
| 303 | */ |
| 304 | if( buf_len < 1 ) |
| 305 | return( POLARSSL_ERR_ECP_BAD_INPUT_DATA ); |
| 306 | |
| 307 | return ecp_write_binary( grp, pt, format, buf, buf + 1, buf_len - 1); |
| 308 | } |
| 309 | |
| 310 | /* |
Manuel Pégourié-Gonnard | 773ed54 | 2012-11-18 13:19:07 +0100 | [diff] [blame] | 311 | * Wrapper around fast quasi-modp functions, with fall-back to mpi_mod_mpi. |
| 312 | * See the documentation of struct ecp_group. |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 313 | */ |
| 314 | static int ecp_modp( mpi *N, const ecp_group *grp ) |
| 315 | { |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 316 | int ret; |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 317 | |
| 318 | if( grp->modp == NULL ) |
| 319 | return( mpi_mod_mpi( N, N, &grp->P ) ); |
| 320 | |
| 321 | if( mpi_cmp_int( N, 0 ) < 0 || mpi_msb( N ) > 2 * grp->pbits ) |
| 322 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 323 | |
| 324 | MPI_CHK( grp->modp( N ) ); |
| 325 | |
| 326 | while( mpi_cmp_int( N, 0 ) < 0 ) |
| 327 | MPI_CHK( mpi_add_mpi( N, N, &grp->P ) ); |
| 328 | |
| 329 | while( mpi_cmp_mpi( N, &grp->P ) >= 0 ) |
| 330 | MPI_CHK( mpi_sub_mpi( N, N, &grp->P ) ); |
| 331 | |
| 332 | cleanup: |
| 333 | return( ret ); |
| 334 | } |
| 335 | |
| 336 | /* |
Manuel Pégourié-Gonnard | 8433824 | 2012-11-11 20:45:18 +0100 | [diff] [blame] | 337 | * 192 bits in terms of t_uint |
| 338 | */ |
| 339 | #define P192_SIZE_INT ( 192 / CHAR_BIT / sizeof( t_uint ) ) |
| 340 | |
| 341 | /* |
| 342 | * Table to get S1, S2, S3 of FIPS 186-3 D.2.1: |
| 343 | * -1 means let this chunk be 0 |
| 344 | * a positive value i means A_i. |
| 345 | */ |
| 346 | #define P192_CHUNKS 3 |
| 347 | #define P192_CHUNK_CHAR ( 64 / CHAR_BIT ) |
| 348 | #define P192_CHUNK_INT ( P192_CHUNK_CHAR / sizeof( t_uint ) ) |
| 349 | |
| 350 | const signed char p192_tbl[][P192_CHUNKS] = { |
| 351 | { -1, 3, 3 }, /* S1 */ |
| 352 | { 4, 4, -1 }, /* S2 */ |
| 353 | { 5, 5, 5 }, /* S3 */ |
| 354 | }; |
| 355 | |
| 356 | /* |
| 357 | * Fast quasi-reduction modulo p192 (FIPS 186-3 D.2.1) |
| 358 | */ |
| 359 | static int ecp_mod_p192( mpi *N ) |
| 360 | { |
| 361 | int ret; |
| 362 | unsigned char i, j, offset; |
| 363 | signed char chunk; |
| 364 | mpi tmp, acc; |
| 365 | t_uint tmp_p[P192_SIZE_INT], acc_p[P192_SIZE_INT + 1]; |
| 366 | |
| 367 | tmp.s = 1; |
| 368 | tmp.n = sizeof( tmp_p ) / sizeof( tmp_p[0] ); |
| 369 | tmp.p = tmp_p; |
| 370 | |
| 371 | acc.s = 1; |
| 372 | acc.n = sizeof( acc_p ) / sizeof( acc_p[0] ); |
| 373 | acc.p = acc_p; |
| 374 | |
| 375 | MPI_CHK( mpi_grow( N, P192_SIZE_INT * 2 ) ); |
| 376 | |
| 377 | /* |
| 378 | * acc = T |
| 379 | */ |
| 380 | memset( acc_p, 0, sizeof( acc_p ) ); |
| 381 | memcpy( acc_p, N->p, P192_CHUNK_CHAR * P192_CHUNKS ); |
| 382 | |
| 383 | for( i = 0; i < sizeof( p192_tbl ) / sizeof( p192_tbl[0] ); i++) |
| 384 | { |
| 385 | /* |
| 386 | * tmp = S_i |
| 387 | */ |
| 388 | memset( tmp_p, 0, sizeof( tmp_p ) ); |
| 389 | for( j = 0, offset = P192_CHUNKS - 1; j < P192_CHUNKS; j++, offset-- ) |
| 390 | { |
| 391 | chunk = p192_tbl[i][j]; |
| 392 | if( chunk >= 0 ) |
| 393 | memcpy( tmp_p + offset * P192_CHUNK_INT, |
| 394 | N->p + chunk * P192_CHUNK_INT, |
| 395 | P192_CHUNK_CHAR ); |
| 396 | } |
| 397 | |
| 398 | /* |
| 399 | * acc += tmp |
| 400 | */ |
| 401 | MPI_CHK( mpi_add_abs( &acc, &acc, &tmp ) ); |
| 402 | } |
| 403 | |
| 404 | MPI_CHK( mpi_copy( N, &acc ) ); |
| 405 | |
| 406 | cleanup: |
| 407 | return( ret ); |
| 408 | } |
| 409 | |
| 410 | /* |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 411 | * Size of p521 in terms of t_uint |
| 412 | */ |
Manuel Pégourié-Gonnard | 8433824 | 2012-11-11 20:45:18 +0100 | [diff] [blame] | 413 | #define P521_SIZE_INT ( 521 / CHAR_BIT / sizeof( t_uint ) + 1 ) |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 414 | |
| 415 | /* |
| 416 | * Bits to keep in the most significant t_uint |
| 417 | */ |
| 418 | #if defined(POLARSS_HAVE_INT8) |
| 419 | #define P521_MASK 0x01 |
| 420 | #else |
| 421 | #define P521_MASK 0x01FF |
| 422 | #endif |
| 423 | |
| 424 | /* |
| 425 | * Fast quasi-reduction modulo p521 (FIPS 186-3 D.2.5) |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 426 | */ |
| 427 | static int ecp_mod_p521( mpi *N ) |
| 428 | { |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 429 | int ret; |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 430 | t_uint Mp[P521_SIZE_INT]; |
| 431 | mpi M; |
| 432 | |
| 433 | if( N->n < P521_SIZE_INT ) |
| 434 | return( 0 ); |
| 435 | |
| 436 | memset( Mp, 0, P521_SIZE_INT * sizeof( t_uint ) ); |
| 437 | memcpy( Mp, N->p, P521_SIZE_INT * sizeof( t_uint ) ); |
| 438 | Mp[P521_SIZE_INT - 1] &= P521_MASK; |
| 439 | |
| 440 | M.s = 1; |
| 441 | M.n = P521_SIZE_INT; |
| 442 | M.p = Mp; |
| 443 | |
| 444 | MPI_CHK( mpi_shift_r( N, 521 ) ); |
| 445 | |
| 446 | MPI_CHK( mpi_add_abs( N, N, &M ) ); |
| 447 | |
| 448 | cleanup: |
| 449 | return( ret ); |
| 450 | } |
| 451 | |
| 452 | /* |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 453 | * Domain parameters for secp192r1 |
| 454 | */ |
| 455 | #define SECP192R1_P \ |
| 456 | "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFF" |
| 457 | #define SECP192R1_B \ |
| 458 | "64210519E59C80E70FA7E9AB72243049FEB8DEECC146B9B1" |
| 459 | #define SECP192R1_GX \ |
| 460 | "188DA80EB03090F67CBF20EB43A18800F4FF0AFD82FF1012" |
| 461 | #define SECP192R1_GY \ |
| 462 | "07192B95FFC8DA78631011ED6B24CDD573F977A11E794811" |
| 463 | #define SECP192R1_N \ |
| 464 | "FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831" |
| 465 | |
| 466 | /* |
| 467 | * Domain parameters for secp224r1 |
| 468 | */ |
| 469 | #define SECP224R1_P \ |
| 470 | "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000001" |
| 471 | #define SECP224R1_B \ |
| 472 | "B4050A850C04B3ABF54132565044B0B7D7BFD8BA270B39432355FFB4" |
| 473 | #define SECP224R1_GX \ |
| 474 | "B70E0CBD6BB4BF7F321390B94A03C1D356C21122343280D6115C1D21" |
| 475 | #define SECP224R1_GY \ |
| 476 | "BD376388B5F723FB4C22DFE6CD4375A05A07476444D5819985007E34" |
| 477 | #define SECP224R1_N \ |
| 478 | "FFFFFFFFFFFFFFFFFFFFFFFFFFFF16A2E0B8F03E13DD29455C5C2A3D" |
| 479 | |
| 480 | /* |
| 481 | * Domain parameters for secp256r1 |
| 482 | */ |
| 483 | #define SECP256R1_P \ |
| 484 | "FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF" |
| 485 | #define SECP256R1_B \ |
| 486 | "5AC635D8AA3A93E7B3EBBD55769886BC651D06B0CC53B0F63BCE3C3E27D2604B" |
| 487 | #define SECP256R1_GX \ |
| 488 | "6B17D1F2E12C4247F8BCE6E563A440F277037D812DEB33A0F4A13945D898C296" |
| 489 | #define SECP256R1_GY \ |
| 490 | "4FE342E2FE1A7F9B8EE7EB4A7C0F9E162BCE33576B315ECECBB6406837BF51F5" |
| 491 | #define SECP256R1_N \ |
| 492 | "FFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551" |
| 493 | |
| 494 | /* |
| 495 | * Domain parameters for secp384r1 |
| 496 | */ |
| 497 | #define SECP384R1_P \ |
| 498 | "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \ |
| 499 | "FFFFFFFFFFFFFFFEFFFFFFFF0000000000000000FFFFFFFF" |
| 500 | #define SECP384R1_B \ |
| 501 | "B3312FA7E23EE7E4988E056BE3F82D19181D9C6EFE814112" \ |
| 502 | "0314088F5013875AC656398D8A2ED19D2A85C8EDD3EC2AEF" |
| 503 | #define SECP384R1_GX \ |
| 504 | "AA87CA22BE8B05378EB1C71EF320AD746E1D3B628BA79B98" \ |
| 505 | "59F741E082542A385502F25DBF55296C3A545E3872760AB7" |
| 506 | #define SECP384R1_GY \ |
| 507 | "3617DE4A96262C6F5D9E98BF9292DC29F8F41DBD289A147C" \ |
| 508 | "E9DA3113B5F0B8C00A60B1CE1D7E819D7A431D7C90EA0E5F" |
| 509 | #define SECP384R1_N \ |
| 510 | "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \ |
| 511 | "C7634D81F4372DDF581A0DB248B0A77AECEC196ACCC52973" |
| 512 | |
| 513 | /* |
| 514 | * Domain parameters for secp521r1 |
| 515 | */ |
| 516 | #define SECP521R1_P \ |
| 517 | "000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \ |
| 518 | "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \ |
| 519 | "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" |
| 520 | #define SECP521R1_B \ |
| 521 | "00000051953EB9618E1C9A1F929A21A0B68540EEA2DA725B" \ |
| 522 | "99B315F3B8B489918EF109E156193951EC7E937B1652C0BD" \ |
| 523 | "3BB1BF073573DF883D2C34F1EF451FD46B503F00" |
| 524 | #define SECP521R1_GX \ |
| 525 | "000000C6858E06B70404E9CD9E3ECB662395B4429C648139" \ |
| 526 | "053FB521F828AF606B4D3DBAA14B5E77EFE75928FE1DC127" \ |
| 527 | "A2FFA8DE3348B3C1856A429BF97E7E31C2E5BD66" |
| 528 | #define SECP521R1_GY \ |
| 529 | "0000011839296A789A3BC0045C8A5FB42C7D1BD998F54449" \ |
| 530 | "579B446817AFBD17273E662C97EE72995EF42640C550B901" \ |
| 531 | "3FAD0761353C7086A272C24088BE94769FD16650" |
| 532 | #define SECP521R1_N \ |
| 533 | "000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" \ |
| 534 | "FFFFFFFFFFFFFFFFFFFFFFFA51868783BF2F966B7FCC0148" \ |
| 535 | "F709A5D03BB5C9B8899C47AEBB6FB71E91386409" |
| 536 | |
| 537 | /* |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 538 | * Set a group using well-known domain parameters |
| 539 | */ |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 540 | int ecp_use_known_dp( ecp_group *grp, uint16_t index ) |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 541 | { |
| 542 | switch( index ) |
| 543 | { |
| 544 | case POLARSSL_ECP_DP_SECP192R1: |
Manuel Pégourié-Gonnard | 8433824 | 2012-11-11 20:45:18 +0100 | [diff] [blame] | 545 | grp->modp = ecp_mod_p192; |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 546 | return( ecp_group_read_string( grp, 16, |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 547 | SECP192R1_P, SECP192R1_B, |
| 548 | SECP192R1_GX, SECP192R1_GY, SECP192R1_N ) ); |
| 549 | |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 550 | case POLARSSL_ECP_DP_SECP224R1: |
| 551 | return( ecp_group_read_string( grp, 16, |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 552 | SECP224R1_P, SECP224R1_B, |
| 553 | SECP224R1_GX, SECP224R1_GY, SECP224R1_N ) ); |
| 554 | |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 555 | case POLARSSL_ECP_DP_SECP256R1: |
| 556 | return( ecp_group_read_string( grp, 16, |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 557 | SECP256R1_P, SECP256R1_B, |
| 558 | SECP256R1_GX, SECP256R1_GY, SECP256R1_N ) ); |
| 559 | |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 560 | case POLARSSL_ECP_DP_SECP384R1: |
| 561 | return( ecp_group_read_string( grp, 16, |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 562 | SECP384R1_P, SECP384R1_B, |
| 563 | SECP384R1_GX, SECP384R1_GY, SECP384R1_N ) ); |
| 564 | |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 565 | case POLARSSL_ECP_DP_SECP521R1: |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 566 | grp->modp = ecp_mod_p521; |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 567 | return( ecp_group_read_string( grp, 16, |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 568 | SECP521R1_P, SECP521R1_B, |
| 569 | SECP521R1_GX, SECP521R1_GY, SECP521R1_N ) ); |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 570 | } |
| 571 | |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 572 | return( POLARSSL_ERR_ECP_BAD_INPUT_DATA ); |
| 573 | } |
| 574 | |
| 575 | /* |
| 576 | * Set a group from an ECParameters record (RFC 4492) |
| 577 | */ |
| 578 | int ecp_tls_read_group( ecp_group *grp, const unsigned char *buf, size_t len ) |
| 579 | { |
| 580 | uint16_t namedcurve; |
| 581 | |
| 582 | /* |
| 583 | * We expect at least three bytes (see below) |
| 584 | */ |
| 585 | if( len < 3 ) |
| 586 | return( POLARSSL_ERR_ECP_BAD_INPUT_DATA ); |
| 587 | |
| 588 | /* |
| 589 | * First byte is curve_type; only named_curve is handled |
| 590 | */ |
| 591 | if( *buf++ != POLARSSL_ECP_TLS_NAMED_CURVE ) |
| 592 | return( POLARSSL_ERR_ECP_BAD_INPUT_DATA ); |
| 593 | |
| 594 | /* |
| 595 | * Next two bytes are the namedcurve |
| 596 | */ |
| 597 | namedcurve = 256 * buf[0] + buf[1]; |
| 598 | return ecp_use_known_dp( grp, namedcurve ); |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 599 | } |
Manuel Pégourié-Gonnard | ab38b70 | 2012-11-05 17:34:55 +0100 | [diff] [blame] | 600 | |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 601 | /* |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 602 | * Fast mod-p functions expect their argument to be in the 0..p^2 range. |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 603 | * |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 604 | * In order to guarantee that, we need to ensure that operands of |
| 605 | * mpi_mul_mpi are in the 0..p range. So, after each operation we will |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 606 | * bring the result back to this range. |
| 607 | * |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 608 | * The following macros are shortcuts for doing that. |
Manuel Pégourié-Gonnard | dada4da | 2012-11-10 14:23:17 +0100 | [diff] [blame] | 609 | */ |
| 610 | |
| 611 | /* |
Manuel Pégourié-Gonnard | 84d1aea | 2012-11-09 02:09:38 +0100 | [diff] [blame] | 612 | * Reduce a mpi mod p in-place, general case, to use after mpi_mul_mpi |
| 613 | */ |
Manuel Pégourié-Gonnard | 62aad14 | 2012-11-10 00:27:12 +0100 | [diff] [blame] | 614 | #define MOD_MUL( N ) MPI_CHK( ecp_modp( &N, grp ) ) |
Manuel Pégourié-Gonnard | 84d1aea | 2012-11-09 02:09:38 +0100 | [diff] [blame] | 615 | |
| 616 | /* |
| 617 | * Reduce a mpi mod p in-place, to use after mpi_sub_mpi |
| 618 | */ |
| 619 | #define MOD_SUB( N ) \ |
| 620 | while( mpi_cmp_int( &N, 0 ) < 0 ) \ |
| 621 | MPI_CHK( mpi_add_mpi( &N, &N, &grp->P ) ) |
| 622 | |
| 623 | /* |
| 624 | * Reduce a mpi mod p in-place, to use after mpi_add_mpi and mpi_mul_int |
| 625 | */ |
| 626 | #define MOD_ADD( N ) \ |
| 627 | while( mpi_cmp_mpi( &N, &grp->P ) >= 0 ) \ |
| 628 | MPI_CHK( mpi_sub_mpi( &N, &N, &grp->P ) ) |
| 629 | |
| 630 | /* |
Manuel Pégourié-Gonnard | 1c33057 | 2012-11-24 12:05:44 +0100 | [diff] [blame] | 631 | * Check that a point is valid as a public key (SEC1 3.2.3.1) |
| 632 | */ |
| 633 | int ecp_check_pubkey( const ecp_group *grp, const ecp_point *pt ) |
| 634 | { |
| 635 | int ret; |
| 636 | mpi YY, RHS; |
| 637 | |
| 638 | if( mpi_cmp_int( &pt->Z, 0 ) == 0 ) |
| 639 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 640 | |
| 641 | /* |
| 642 | * pt coordinates must be normalized for our checks |
| 643 | */ |
| 644 | if( mpi_cmp_int( &pt->Z, 1 ) != 0 ) |
| 645 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 646 | |
| 647 | if( mpi_cmp_int( &pt->X, 0 ) < 0 || |
| 648 | mpi_cmp_int( &pt->Y, 0 ) < 0 || |
| 649 | mpi_cmp_mpi( &pt->X, &grp->P ) >= 0 || |
| 650 | mpi_cmp_mpi( &pt->Y, &grp->P ) >= 0 ) |
| 651 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 652 | |
| 653 | mpi_init( &YY ); mpi_init( &RHS ); |
| 654 | |
| 655 | /* |
| 656 | * YY = Y^2 |
| 657 | * RHS = X (X^2 - 3) + B = X^3 - 3X + B |
| 658 | */ |
| 659 | MPI_CHK( mpi_mul_mpi( &YY, &pt->Y, &pt->Y ) ); MOD_MUL( YY ); |
| 660 | MPI_CHK( mpi_mul_mpi( &RHS, &pt->X, &pt->X ) ); MOD_MUL( RHS ); |
| 661 | MPI_CHK( mpi_sub_int( &RHS, &RHS, 3 ) ); MOD_SUB( RHS ); |
| 662 | MPI_CHK( mpi_mul_mpi( &RHS, &RHS, &pt->X ) ); MOD_MUL( RHS ); |
| 663 | MPI_CHK( mpi_add_mpi( &RHS, &RHS, &grp->B ) ); MOD_ADD( RHS ); |
| 664 | |
| 665 | if( mpi_cmp_mpi( &YY, &RHS ) != 0 ) |
| 666 | ret = POLARSSL_ERR_ECP_GENERIC; |
| 667 | |
| 668 | cleanup: |
| 669 | |
| 670 | mpi_free( &YY ); mpi_free( &RHS ); |
| 671 | |
| 672 | return( ret ); |
| 673 | } |
| 674 | |
| 675 | /* |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 676 | * Normalize jacobian coordinates so that Z == 0 || Z == 1 (GECC 3.2.1) |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 677 | */ |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 678 | static int ecp_normalize( const ecp_group *grp, ecp_point *pt ) |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 679 | { |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 680 | int ret; |
Manuel Pégourié-Gonnard | cdd4432 | 2012-11-21 16:00:55 +0100 | [diff] [blame] | 681 | mpi Zi, ZZi; |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 682 | |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 683 | if( mpi_cmp_int( &pt->Z, 0 ) == 0 ) |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 684 | return( 0 ); |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 685 | |
Manuel Pégourié-Gonnard | cdd4432 | 2012-11-21 16:00:55 +0100 | [diff] [blame] | 686 | mpi_init( &Zi ); mpi_init( &ZZi ); |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 687 | |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 688 | /* |
| 689 | * X = X / Z^2 mod p |
| 690 | */ |
| 691 | MPI_CHK( mpi_inv_mod( &Zi, &pt->Z, &grp->P ) ); |
| 692 | MPI_CHK( mpi_mul_mpi( &ZZi, &Zi, &Zi ) ); MOD_MUL( ZZi ); |
| 693 | MPI_CHK( mpi_mul_mpi( &pt->X, &pt->X, &ZZi ) ); MOD_MUL( pt->X ); |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 694 | |
| 695 | /* |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 696 | * Y = Y / Z^3 mod p |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 697 | */ |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 698 | MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &ZZi ) ); MOD_MUL( pt->Y ); |
| 699 | MPI_CHK( mpi_mul_mpi( &pt->Y, &pt->Y, &Zi ) ); MOD_MUL( pt->Y ); |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 700 | |
| 701 | /* |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 702 | * Z = 1 |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 703 | */ |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 704 | MPI_CHK( mpi_lset( &pt->Z, 1 ) ); |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 705 | |
| 706 | cleanup: |
| 707 | |
Manuel Pégourié-Gonnard | cdd4432 | 2012-11-21 16:00:55 +0100 | [diff] [blame] | 708 | mpi_free( &Zi ); mpi_free( &ZZi ); |
Manuel Pégourié-Gonnard | d070f51 | 2012-11-08 17:40:51 +0100 | [diff] [blame] | 709 | |
| 710 | return( ret ); |
| 711 | } |
| 712 | |
| 713 | /* |
Manuel Pégourié-Gonnard | cdd4432 | 2012-11-21 16:00:55 +0100 | [diff] [blame] | 714 | * Normalize jacobian coordinates of an array of points, |
Manuel Pégourié-Gonnard | 3680c82 | 2012-11-21 18:49:45 +0100 | [diff] [blame] | 715 | * using Montgomery's trick to perform only one inversion mod P. |
Manuel Pégourié-Gonnard | cdd4432 | 2012-11-21 16:00:55 +0100 | [diff] [blame] | 716 | * (See for example Cohen's "A Course in Computational Algebraic Number |
| 717 | * Theory", Algorithm 10.3.4.) |
| 718 | * |
Manuel Pégourié-Gonnard | 3680c82 | 2012-11-21 18:49:45 +0100 | [diff] [blame] | 719 | * Warning: fails if one of the points is zero! |
| 720 | * This should never happen, see choice of w in ecp_mul(). |
Manuel Pégourié-Gonnard | cdd4432 | 2012-11-21 16:00:55 +0100 | [diff] [blame] | 721 | */ |
| 722 | static int ecp_normalize_many( const ecp_group *grp, |
| 723 | ecp_point T[], size_t t_len ) |
| 724 | { |
| 725 | int ret; |
| 726 | size_t i; |
| 727 | mpi *c, u, Zi, ZZi; |
| 728 | |
| 729 | if( t_len < 2 ) |
| 730 | return( ecp_normalize( grp, T ) ); |
| 731 | |
| 732 | if( ( c = (mpi *) malloc( t_len * sizeof( mpi ) ) ) == NULL ) |
| 733 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 734 | |
| 735 | mpi_init( &u ); mpi_init( &Zi ); mpi_init( &ZZi ); |
| 736 | for( i = 0; i < t_len; i++ ) |
| 737 | mpi_init( &c[i] ); |
| 738 | |
| 739 | /* |
| 740 | * c[i] = Z_0 * ... * Z_i |
| 741 | */ |
| 742 | MPI_CHK( mpi_copy( &c[0], &T[0].Z ) ); |
| 743 | for( i = 1; i < t_len; i++ ) |
| 744 | { |
| 745 | MPI_CHK( mpi_mul_mpi( &c[i], &c[i-1], &T[i].Z ) ); |
| 746 | MOD_MUL( c[i] ); |
| 747 | } |
| 748 | |
| 749 | /* |
| 750 | * u = 1 / (Z_0 * ... * Z_n) mod P |
| 751 | */ |
| 752 | MPI_CHK( mpi_inv_mod( &u, &c[t_len-1], &grp->P ) ); |
| 753 | |
| 754 | for( i = t_len - 1; ; i-- ) |
| 755 | { |
| 756 | /* |
| 757 | * Zi = 1 / Z_i mod p |
| 758 | * u = 1 / (Z_0 * ... * Z_i) mod P |
| 759 | */ |
| 760 | if( i == 0 ) { |
| 761 | MPI_CHK( mpi_copy( &Zi, &u ) ); |
| 762 | } |
| 763 | else |
| 764 | { |
| 765 | MPI_CHK( mpi_mul_mpi( &Zi, &u, &c[i-1] ) ); MOD_MUL( Zi ); |
| 766 | MPI_CHK( mpi_mul_mpi( &u, &u, &T[i].Z ) ); MOD_MUL( u ); |
| 767 | } |
| 768 | |
| 769 | /* |
| 770 | * proceed as in normalize() |
| 771 | */ |
| 772 | MPI_CHK( mpi_mul_mpi( &ZZi, &Zi, &Zi ) ); MOD_MUL( ZZi ); |
| 773 | MPI_CHK( mpi_mul_mpi( &T[i].X, &T[i].X, &ZZi ) ); MOD_MUL( T[i].X ); |
| 774 | MPI_CHK( mpi_mul_mpi( &T[i].Y, &T[i].Y, &ZZi ) ); MOD_MUL( T[i].Y ); |
| 775 | MPI_CHK( mpi_mul_mpi( &T[i].Y, &T[i].Y, &Zi ) ); MOD_MUL( T[i].Y ); |
| 776 | MPI_CHK( mpi_lset( &T[i].Z, 1 ) ); |
| 777 | |
| 778 | if( i == 0 ) |
| 779 | break; |
| 780 | } |
| 781 | |
| 782 | cleanup: |
| 783 | |
| 784 | mpi_free( &u ); mpi_free( &Zi ); mpi_free( &ZZi ); |
| 785 | for( i = 0; i < t_len; i++ ) |
| 786 | mpi_free( &c[i] ); |
| 787 | free( c ); |
| 788 | |
| 789 | return( ret ); |
| 790 | } |
| 791 | |
| 792 | |
| 793 | /* |
Manuel Pégourié-Gonnard | 989c32b | 2012-11-08 22:02:42 +0100 | [diff] [blame] | 794 | * Point doubling R = 2 P, Jacobian coordinates (GECC 3.21) |
| 795 | */ |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 796 | static int ecp_double_jac( const ecp_group *grp, ecp_point *R, |
| 797 | const ecp_point *P ) |
Manuel Pégourié-Gonnard | 989c32b | 2012-11-08 22:02:42 +0100 | [diff] [blame] | 798 | { |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 799 | int ret; |
Manuel Pégourié-Gonnard | 989c32b | 2012-11-08 22:02:42 +0100 | [diff] [blame] | 800 | mpi T1, T2, T3, X, Y, Z; |
| 801 | |
Manuel Pégourié-Gonnard | b4a310b | 2012-11-13 20:57:00 +0100 | [diff] [blame] | 802 | #if defined(POLARSSL_SELF_TEST) |
| 803 | dbl_count++; |
| 804 | #endif |
| 805 | |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 806 | if( mpi_cmp_int( &P->Z, 0 ) == 0 ) |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 807 | return( ecp_set_zero( R ) ); |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 808 | |
Manuel Pégourié-Gonnard | 989c32b | 2012-11-08 22:02:42 +0100 | [diff] [blame] | 809 | mpi_init( &T1 ); mpi_init( &T2 ); mpi_init( &T3 ); |
| 810 | mpi_init( &X ); mpi_init( &Y ); mpi_init( &Z ); |
| 811 | |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 812 | MPI_CHK( mpi_mul_mpi( &T1, &P->Z, &P->Z ) ); MOD_MUL( T1 ); |
| 813 | MPI_CHK( mpi_sub_mpi( &T2, &P->X, &T1 ) ); MOD_SUB( T2 ); |
| 814 | MPI_CHK( mpi_add_mpi( &T1, &P->X, &T1 ) ); MOD_ADD( T1 ); |
| 815 | MPI_CHK( mpi_mul_mpi( &T2, &T2, &T1 ) ); MOD_MUL( T2 ); |
| 816 | MPI_CHK( mpi_mul_int( &T2, &T2, 3 ) ); MOD_ADD( T2 ); |
| 817 | MPI_CHK( mpi_mul_int( &Y, &P->Y, 2 ) ); MOD_ADD( Y ); |
| 818 | MPI_CHK( mpi_mul_mpi( &Z, &Y, &P->Z ) ); MOD_MUL( Z ); |
| 819 | MPI_CHK( mpi_mul_mpi( &Y, &Y, &Y ) ); MOD_MUL( Y ); |
| 820 | MPI_CHK( mpi_mul_mpi( &T3, &Y, &P->X ) ); MOD_MUL( T3 ); |
| 821 | MPI_CHK( mpi_mul_mpi( &Y, &Y, &Y ) ); MOD_MUL( Y ); |
Manuel Pégourié-Gonnard | 989c32b | 2012-11-08 22:02:42 +0100 | [diff] [blame] | 822 | |
Manuel Pégourié-Gonnard | 84d1aea | 2012-11-09 02:09:38 +0100 | [diff] [blame] | 823 | /* |
| 824 | * For Y = Y / 2 mod p, we must make sure that Y is even before |
| 825 | * using right-shift. No need to reduce mod p afterwards. |
| 826 | */ |
| 827 | if( mpi_get_bit( &Y, 0 ) == 1 ) |
| 828 | MPI_CHK( mpi_add_mpi( &Y, &Y, &grp->P ) ); |
| 829 | MPI_CHK( mpi_shift_r( &Y, 1 ) ); |
| 830 | |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 831 | MPI_CHK( mpi_mul_mpi( &X, &T2, &T2 ) ); MOD_MUL( X ); |
| 832 | MPI_CHK( mpi_mul_int( &T1, &T3, 2 ) ); MOD_ADD( T1 ); |
| 833 | MPI_CHK( mpi_sub_mpi( &X, &X, &T1 ) ); MOD_SUB( X ); |
| 834 | MPI_CHK( mpi_sub_mpi( &T1, &T3, &X ) ); MOD_SUB( T1 ); |
| 835 | MPI_CHK( mpi_mul_mpi( &T1, &T1, &T2 ) ); MOD_MUL( T1 ); |
| 836 | MPI_CHK( mpi_sub_mpi( &Y, &T1, &Y ) ); MOD_SUB( Y ); |
Manuel Pégourié-Gonnard | 84d1aea | 2012-11-09 02:09:38 +0100 | [diff] [blame] | 837 | |
| 838 | MPI_CHK( mpi_copy( &R->X, &X ) ); |
| 839 | MPI_CHK( mpi_copy( &R->Y, &Y ) ); |
| 840 | MPI_CHK( mpi_copy( &R->Z, &Z ) ); |
Manuel Pégourié-Gonnard | 989c32b | 2012-11-08 22:02:42 +0100 | [diff] [blame] | 841 | |
| 842 | cleanup: |
| 843 | |
| 844 | mpi_free( &T1 ); mpi_free( &T2 ); mpi_free( &T3 ); |
| 845 | mpi_free( &X ); mpi_free( &Y ); mpi_free( &Z ); |
| 846 | |
| 847 | return( ret ); |
| 848 | } |
| 849 | |
| 850 | /* |
Manuel Pégourié-Gonnard | 9674fd0 | 2012-11-19 21:23:27 +0100 | [diff] [blame] | 851 | * Addition or subtraction: R = P + Q or R = P + Q, |
| 852 | * mixed affine-Jacobian coordinates (GECC 3.22) |
| 853 | * |
| 854 | * The coordinates of Q must be normalized (= affine), |
| 855 | * but those of P don't need to. R is not normalized. |
| 856 | * |
| 857 | * If sign >= 0, perform addition, otherwise perform subtraction, |
| 858 | * taking advantage of the fact that, for Q != 0, we have |
| 859 | * -Q = (Q.X, -Q.Y, Q.Z) |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 860 | */ |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 861 | static int ecp_add_mixed( const ecp_group *grp, ecp_point *R, |
Manuel Pégourié-Gonnard | 9674fd0 | 2012-11-19 21:23:27 +0100 | [diff] [blame] | 862 | const ecp_point *P, const ecp_point *Q, |
| 863 | signed char sign ) |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 864 | { |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 865 | int ret; |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 866 | mpi T1, T2, T3, T4, X, Y, Z; |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 867 | |
Manuel Pégourié-Gonnard | b4a310b | 2012-11-13 20:57:00 +0100 | [diff] [blame] | 868 | #if defined(POLARSSL_SELF_TEST) |
| 869 | add_count++; |
| 870 | #endif |
| 871 | |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 872 | /* |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 873 | * Trivial cases: P == 0 or Q == 0 |
Manuel Pégourié-Gonnard | 9674fd0 | 2012-11-19 21:23:27 +0100 | [diff] [blame] | 874 | * (Check Q first, so that we know Q != 0 when we compute -Q.) |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 875 | */ |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 876 | if( mpi_cmp_int( &Q->Z, 0 ) == 0 ) |
| 877 | return( ecp_copy( R, P ) ); |
| 878 | |
Manuel Pégourié-Gonnard | 9674fd0 | 2012-11-19 21:23:27 +0100 | [diff] [blame] | 879 | if( mpi_cmp_int( &P->Z, 0 ) == 0 ) |
| 880 | { |
| 881 | ret = ecp_copy( R, Q ); |
| 882 | |
| 883 | /* |
| 884 | * -R.Y mod P = P - R.Y unless R.Y == 0 |
| 885 | */ |
| 886 | if( ret == 0 && sign < 0) |
| 887 | if( mpi_cmp_int( &R->Y, 0 ) != 0 ) |
| 888 | ret = mpi_sub_mpi( &R->Y, &grp->P, &R->Y ); |
| 889 | |
| 890 | return( ret ); |
| 891 | } |
| 892 | |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 893 | /* |
| 894 | * Make sure Q coordinates are normalized |
| 895 | */ |
| 896 | if( mpi_cmp_int( &Q->Z, 1 ) != 0 ) |
| 897 | return( POLARSSL_ERR_ECP_GENERIC ); |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 898 | |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 899 | mpi_init( &T1 ); mpi_init( &T2 ); mpi_init( &T3 ); mpi_init( &T4 ); |
| 900 | mpi_init( &X ); mpi_init( &Y ); mpi_init( &Z ); |
Manuel Pégourié-Gonnard | ab38b70 | 2012-11-05 17:34:55 +0100 | [diff] [blame] | 901 | |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 902 | MPI_CHK( mpi_mul_mpi( &T1, &P->Z, &P->Z ) ); MOD_MUL( T1 ); |
| 903 | MPI_CHK( mpi_mul_mpi( &T2, &T1, &P->Z ) ); MOD_MUL( T2 ); |
| 904 | MPI_CHK( mpi_mul_mpi( &T1, &T1, &Q->X ) ); MOD_MUL( T1 ); |
| 905 | MPI_CHK( mpi_mul_mpi( &T2, &T2, &Q->Y ) ); MOD_MUL( T2 ); |
Manuel Pégourié-Gonnard | 9674fd0 | 2012-11-19 21:23:27 +0100 | [diff] [blame] | 906 | |
| 907 | /* |
| 908 | * For subtraction, -Q.Y should have been used instead of Q.Y, |
| 909 | * so we replace T2 by -T2, which is P - T2 mod P |
| 910 | */ |
| 911 | if( sign < 0 ) |
| 912 | { |
| 913 | MPI_CHK( mpi_sub_mpi( &T2, &grp->P, &T2 ) ); |
| 914 | MOD_SUB( T2 ); |
| 915 | } |
| 916 | |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 917 | MPI_CHK( mpi_sub_mpi( &T1, &T1, &P->X ) ); MOD_SUB( T1 ); |
| 918 | MPI_CHK( mpi_sub_mpi( &T2, &T2, &P->Y ) ); MOD_SUB( T2 ); |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 919 | |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 920 | if( mpi_cmp_int( &T1, 0 ) == 0 ) |
| 921 | { |
| 922 | if( mpi_cmp_int( &T2, 0 ) == 0 ) |
| 923 | { |
| 924 | ret = ecp_double_jac( grp, R, P ); |
| 925 | goto cleanup; |
| 926 | } |
| 927 | else |
| 928 | { |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 929 | ret = ecp_set_zero( R ); |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 930 | goto cleanup; |
| 931 | } |
| 932 | } |
| 933 | |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 934 | MPI_CHK( mpi_mul_mpi( &Z, &P->Z, &T1 ) ); MOD_MUL( Z ); |
| 935 | MPI_CHK( mpi_mul_mpi( &T3, &T1, &T1 ) ); MOD_MUL( T3 ); |
| 936 | MPI_CHK( mpi_mul_mpi( &T4, &T3, &T1 ) ); MOD_MUL( T4 ); |
| 937 | MPI_CHK( mpi_mul_mpi( &T3, &T3, &P->X ) ); MOD_MUL( T3 ); |
| 938 | MPI_CHK( mpi_mul_int( &T1, &T3, 2 ) ); MOD_ADD( T1 ); |
| 939 | MPI_CHK( mpi_mul_mpi( &X, &T2, &T2 ) ); MOD_MUL( X ); |
| 940 | MPI_CHK( mpi_sub_mpi( &X, &X, &T1 ) ); MOD_SUB( X ); |
| 941 | MPI_CHK( mpi_sub_mpi( &X, &X, &T4 ) ); MOD_SUB( X ); |
| 942 | MPI_CHK( mpi_sub_mpi( &T3, &T3, &X ) ); MOD_SUB( T3 ); |
| 943 | MPI_CHK( mpi_mul_mpi( &T3, &T3, &T2 ) ); MOD_MUL( T3 ); |
| 944 | MPI_CHK( mpi_mul_mpi( &T4, &T4, &P->Y ) ); MOD_MUL( T4 ); |
| 945 | MPI_CHK( mpi_sub_mpi( &Y, &T3, &T4 ) ); MOD_SUB( Y ); |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 946 | |
Manuel Pégourié-Gonnard | 84d1aea | 2012-11-09 02:09:38 +0100 | [diff] [blame] | 947 | MPI_CHK( mpi_copy( &R->X, &X ) ); |
| 948 | MPI_CHK( mpi_copy( &R->Y, &Y ) ); |
| 949 | MPI_CHK( mpi_copy( &R->Z, &Z ) ); |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 950 | |
| 951 | cleanup: |
| 952 | |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 953 | mpi_free( &T1 ); mpi_free( &T2 ); mpi_free( &T3 ); mpi_free( &T4 ); |
| 954 | mpi_free( &X ); mpi_free( &Y ); mpi_free( &Z ); |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 955 | |
| 956 | return( ret ); |
| 957 | } |
| 958 | |
| 959 | /* |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 960 | * Addition: R = P + Q, result's coordinates normalized |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 961 | */ |
| 962 | int ecp_add( const ecp_group *grp, ecp_point *R, |
| 963 | const ecp_point *P, const ecp_point *Q ) |
| 964 | { |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 965 | int ret; |
Manuel Pégourié-Gonnard | 989c32b | 2012-11-08 22:02:42 +0100 | [diff] [blame] | 966 | |
Manuel Pégourié-Gonnard | 9674fd0 | 2012-11-19 21:23:27 +0100 | [diff] [blame] | 967 | MPI_CHK( ecp_add_mixed( grp, R, P, Q , 1 ) ); |
| 968 | MPI_CHK( ecp_normalize( grp, R ) ); |
| 969 | |
| 970 | cleanup: |
| 971 | return( ret ); |
| 972 | } |
| 973 | |
| 974 | /* |
| 975 | * Subtraction: R = P - Q, result's coordinates normalized |
| 976 | */ |
| 977 | int ecp_sub( const ecp_group *grp, ecp_point *R, |
| 978 | const ecp_point *P, const ecp_point *Q ) |
| 979 | { |
| 980 | int ret; |
| 981 | |
| 982 | MPI_CHK( ecp_add_mixed( grp, R, P, Q, -1 ) ); |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 983 | MPI_CHK( ecp_normalize( grp, R ) ); |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 984 | |
Manuel Pégourié-Gonnard | 989c32b | 2012-11-08 22:02:42 +0100 | [diff] [blame] | 985 | cleanup: |
Manuel Pégourié-Gonnard | 7e0adfb | 2012-11-08 23:21:46 +0100 | [diff] [blame] | 986 | return( ret ); |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 987 | } |
| 988 | |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 989 | /* |
Manuel Pégourié-Gonnard | 8555607 | 2012-11-17 19:54:20 +0100 | [diff] [blame] | 990 | * Compute a modified width-w non-adjacent form (NAF) of a number, |
| 991 | * with a fixed pattern for resistance to SPA/timing attacks, |
| 992 | * see <http://rd.springer.com/chapter/10.1007/3-540-36563-X_23>. |
| 993 | * (The resulting multiplication algorithm can also been seen as a |
| 994 | * modification of 2^w-ary multiplication, with signed coefficients, |
| 995 | * all of them odd.) |
| 996 | * |
| 997 | * Input: |
| 998 | * m must be an odd positive mpi less than w * k bits long |
| 999 | * x must be an array of k elements |
| 1000 | * w must be less than a certain maximum (currently 8) |
| 1001 | * |
| 1002 | * The result is a sequence x[0], ..., x[k-1] with x[i] in the range |
| 1003 | * - 2^(width - 1) .. 2^(width - 1) - 1 such that |
| 1004 | * m = (2 * x[0] + 1) + 2^width * (2 * x[1] + 1) + ... |
| 1005 | * + 2^((k-1) * width) * (2 * x[k-1] + 1) |
| 1006 | * |
| 1007 | * Compared to "Algorithm SPA-resistant Width-w NAF with Odd Scalar" |
| 1008 | * p. 335 of the cited reference, here we return only u, not d_w since |
| 1009 | * it is known that the other d_w[j] will be 0. Moreover, the returned |
| 1010 | * string doesn't actually store u_i but x_i = u_i / 2 since it is known |
| 1011 | * that u_i is odd. Also, since we always select a positive value for d |
| 1012 | * mod 2^w, we don't need to check the sign of u[i-1] when the reference |
| 1013 | * does. Finally, there is an off-by-one error in the reference: the |
| 1014 | * last index should be k-1, not k. |
| 1015 | */ |
Manuel Pégourié-Gonnard | 7652a59 | 2012-11-21 10:00:45 +0100 | [diff] [blame] | 1016 | static int ecp_w_naf_fixed( signed char x[], size_t k, |
| 1017 | unsigned char w, const mpi *m ) |
Manuel Pégourié-Gonnard | 8555607 | 2012-11-17 19:54:20 +0100 | [diff] [blame] | 1018 | { |
| 1019 | int ret; |
| 1020 | unsigned int i, u, mask, carry; |
| 1021 | mpi M; |
| 1022 | |
| 1023 | mpi_init( &M ); |
| 1024 | |
| 1025 | MPI_CHK( mpi_copy( &M, m ) ); |
| 1026 | mask = ( 1 << w ) - 1; |
| 1027 | carry = 1 << ( w - 1 ); |
| 1028 | |
| 1029 | for( i = 0; i < k; i++ ) |
| 1030 | { |
| 1031 | u = M.p[0] & mask; |
| 1032 | |
| 1033 | if( ( u & 1 ) == 0 && i > 0 ) |
| 1034 | x[i - 1] -= carry; |
| 1035 | |
| 1036 | x[i] = u >> 1; |
| 1037 | mpi_shift_r( &M, w ); |
| 1038 | } |
| 1039 | |
| 1040 | /* |
| 1041 | * We should have consumed all the bits now |
| 1042 | */ |
| 1043 | if( mpi_cmp_int( &M, 0 ) != 0 ) |
| 1044 | ret = POLARSSL_ERR_ECP_GENERIC; |
| 1045 | |
| 1046 | cleanup: |
| 1047 | |
| 1048 | mpi_free( &M ); |
| 1049 | |
| 1050 | return( ret ); |
| 1051 | } |
| 1052 | |
| 1053 | /* |
Manuel Pégourié-Gonnard | 7652a59 | 2012-11-21 10:00:45 +0100 | [diff] [blame] | 1054 | * Precompute odd multiples of P up to (2 * t_len - 1) P. |
| 1055 | * The table is filled with T[i] = (2 * i + 1) P. |
| 1056 | */ |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1057 | static int ecp_precompute( const ecp_group *grp, |
| 1058 | ecp_point T[], size_t t_len, |
| 1059 | const ecp_point *P ) |
Manuel Pégourié-Gonnard | 7652a59 | 2012-11-21 10:00:45 +0100 | [diff] [blame] | 1060 | { |
| 1061 | int ret; |
| 1062 | size_t i; |
| 1063 | ecp_point PP; |
| 1064 | |
| 1065 | ecp_point_init( &PP ); |
| 1066 | |
| 1067 | MPI_CHK( ecp_add( grp, &PP, P, P ) ); |
| 1068 | |
| 1069 | MPI_CHK( ecp_copy( &T[0], P ) ); |
| 1070 | |
Manuel Pégourié-Gonnard | 7652a59 | 2012-11-21 10:00:45 +0100 | [diff] [blame] | 1071 | for( i = 1; i < t_len; i++ ) |
Manuel Pégourié-Gonnard | cdd4432 | 2012-11-21 16:00:55 +0100 | [diff] [blame] | 1072 | MPI_CHK( ecp_add_mixed( grp, &T[i], &T[i-1], &PP, +1 ) ); |
| 1073 | |
| 1074 | /* |
| 1075 | * T[0] = P already has normalized coordinates |
| 1076 | */ |
Manuel Pégourié-Gonnard | 3680c82 | 2012-11-21 18:49:45 +0100 | [diff] [blame] | 1077 | MPI_CHK( ecp_normalize_many( grp, T + 1, t_len - 1 ) ); |
Manuel Pégourié-Gonnard | 7652a59 | 2012-11-21 10:00:45 +0100 | [diff] [blame] | 1078 | |
| 1079 | cleanup: |
| 1080 | |
| 1081 | ecp_point_free( &PP ); |
| 1082 | |
| 1083 | return( ret ); |
| 1084 | } |
| 1085 | |
| 1086 | /* |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1087 | * Maximum length of the precomputed table |
| 1088 | */ |
| 1089 | #define MAX_PRE_LEN ( 1 << (POLARSSL_ECP_WINDOW_SIZE - 1) ) |
| 1090 | |
| 1091 | /* |
| 1092 | * Maximum length of the NAF: ceil( grp->nbits + 1 ) / w |
| 1093 | * (that is: grp->nbits / w + 1) |
| 1094 | * Allow p_bits + 1 bits in case M = grp->N + 1 is one bit longer than N. |
| 1095 | */ |
| 1096 | #define MAX_NAF_LEN ( POLARSSL_ECP_MAX_N_BITS / 2 + 1 ) |
| 1097 | |
| 1098 | /* |
| 1099 | * Integer multiplication: R = m * P |
| 1100 | * |
| 1101 | * Based on fixed-pattern width-w NAF, see comments of ecp_w_naf_fixed() |
| 1102 | * and <http://rd.springer.com/chapter/10.1007/3-540-36563-X_23>. |
| 1103 | * |
| 1104 | * This function executes a fixed number of operations for |
| 1105 | * random m in the range 0 .. 2^nbits - 1. |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1106 | */ |
| 1107 | int ecp_mul( const ecp_group *grp, ecp_point *R, |
| 1108 | const mpi *m, const ecp_point *P ) |
| 1109 | { |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1110 | int ret; |
| 1111 | unsigned char w, m_is_odd; |
| 1112 | size_t pre_len, naf_len, i, j; |
| 1113 | signed char naf[ MAX_NAF_LEN ]; |
| 1114 | ecp_point Q, T[ MAX_PRE_LEN ]; |
| 1115 | mpi M; |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1116 | |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1117 | if( mpi_cmp_int( m, 0 ) < 0 || mpi_msb( m ) > grp->nbits ) |
Manuel Pégourié-Gonnard | 4bdd47d | 2012-11-11 14:33:59 +0100 | [diff] [blame] | 1118 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 1119 | |
Manuel Pégourié-Gonnard | 3680c82 | 2012-11-21 18:49:45 +0100 | [diff] [blame] | 1120 | w = grp->nbits >= 521 ? 6 : |
| 1121 | grp->nbits >= 224 ? 5 : |
| 1122 | 4; |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1123 | |
Manuel Pégourié-Gonnard | 3680c82 | 2012-11-21 18:49:45 +0100 | [diff] [blame] | 1124 | /* |
| 1125 | * Make sure w is within the limits. |
| 1126 | * The last test ensures that none of the precomputed points is zero, |
| 1127 | * which wouldn't be handled correctly by ecp_normalize_many(). |
| 1128 | * It is only useful for small curves, as used in the test suite. |
| 1129 | */ |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1130 | if( w > POLARSSL_ECP_WINDOW_SIZE ) |
| 1131 | w = POLARSSL_ECP_WINDOW_SIZE; |
Manuel Pégourié-Gonnard | 3680c82 | 2012-11-21 18:49:45 +0100 | [diff] [blame] | 1132 | if( w < 2 || w >= grp->nbits ) |
| 1133 | w = 2; |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1134 | |
| 1135 | pre_len = 1 << ( w - 1 ); |
| 1136 | naf_len = grp->nbits / w + 1; |
| 1137 | |
| 1138 | mpi_init( &M ); |
| 1139 | ecp_point_init( &Q ); |
| 1140 | for( i = 0; i < pre_len; i++ ) |
| 1141 | ecp_point_init( &T[i] ); |
| 1142 | |
| 1143 | m_is_odd = ( mpi_get_bit( m, 0 ) == 1 ); |
| 1144 | |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1145 | /* |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1146 | * Make sure M is odd: |
| 1147 | * later we'll get m * P by subtracting * P or 2 * P to M * P. |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1148 | */ |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1149 | MPI_CHK( mpi_copy( &M, m ) ); |
| 1150 | MPI_CHK( mpi_add_int( &M, &M, 1 + m_is_odd ) ); |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1151 | |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1152 | /* |
| 1153 | * Compute the fixed-pattern NAF and precompute odd multiples |
| 1154 | */ |
| 1155 | MPI_CHK( ecp_w_naf_fixed( naf, naf_len, w, &M ) ); |
| 1156 | MPI_CHK( ecp_precompute( grp, T, pre_len, P ) ); |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 1157 | |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1158 | /* |
| 1159 | * Compute M * P, using a variant of left-to-right 2^w-ary multiplication: |
| 1160 | * at each step we add (2 * naf[i] + 1) P, then multiply by 2^w. |
| 1161 | * |
| 1162 | * If naf[i] >= 0, we have (2 * naf[i] + 1) P == T[ naf[i] ] |
| 1163 | * Otherwise, (2 * naf[i] + 1) P == - ( 2 * ( - naf[i] - 1 ) + 1) P |
| 1164 | * == T[ - naf[i] - 1 ] |
| 1165 | */ |
| 1166 | MPI_CHK( ecp_set_zero( &Q ) ); |
| 1167 | i = naf_len - 1; |
| 1168 | while( 1 ) |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1169 | { |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1170 | if( naf[i] < 0 ) |
| 1171 | { |
| 1172 | MPI_CHK( ecp_add_mixed( grp, &Q, &Q, &T[ - naf[i] - 1 ], -1 ) ); |
| 1173 | } |
| 1174 | else |
| 1175 | { |
| 1176 | MPI_CHK( ecp_add_mixed( grp, &Q, &Q, &T[ naf[i] ], +1 ) ); |
| 1177 | } |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1178 | |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1179 | if( i == 0 ) |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1180 | break; |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1181 | i--; |
| 1182 | |
| 1183 | for( j = 0; j < w; j++ ) |
| 1184 | { |
| 1185 | MPI_CHK( ecp_double_jac( grp, &Q, &Q ) ); |
| 1186 | } |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1187 | } |
| 1188 | |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1189 | /* |
| 1190 | * Now get m * P from M * P. |
| 1191 | * Since we don't need T[] any more, we can recycle it: |
| 1192 | * we already have T[0] = P, now set T[1] = 2 * P. |
| 1193 | */ |
| 1194 | MPI_CHK( ecp_add( grp, &T[1], P, P ) ); |
| 1195 | MPI_CHK( ecp_sub( grp, R, &Q, &T[m_is_odd] ) ); |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1196 | |
Manuel Pégourié-Gonnard | 3680c82 | 2012-11-21 18:49:45 +0100 | [diff] [blame] | 1197 | |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1198 | cleanup: |
| 1199 | |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1200 | mpi_free( &M ); |
| 1201 | ecp_point_free( &Q ); |
| 1202 | for( i = 0; i < pre_len; i++ ) |
| 1203 | ecp_point_free( &T[i] ); |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1204 | |
| 1205 | return( ret ); |
| 1206 | } |
| 1207 | |
Manuel Pégourié-Gonnard | 45a035a | 2013-01-26 14:42:45 +0100 | [diff] [blame] | 1208 | /* |
| 1209 | * Generate a keypair (SEC1 3.2.1) |
| 1210 | */ |
| 1211 | int ecp_gen_keypair( const ecp_group *grp, mpi *d, ecp_point *Q, |
| 1212 | int (*f_rng)(void *, unsigned char *, size_t), |
| 1213 | void *p_rng ) |
| 1214 | { |
| 1215 | int count = 0; |
| 1216 | size_t n_size = (grp->nbits + 7) / 8; |
| 1217 | |
| 1218 | /* |
| 1219 | * Generate d such that 1 <= n < N |
| 1220 | */ |
| 1221 | do |
| 1222 | { |
| 1223 | mpi_fill_random( d, n_size, f_rng, p_rng ); |
| 1224 | |
| 1225 | while( mpi_cmp_mpi( d, &grp->N ) >= 0 ) |
| 1226 | mpi_shift_r( d, 1 ); |
| 1227 | |
| 1228 | if( count++ > 10 ) |
| 1229 | return( POLARSSL_ERR_ECP_GENERIC ); |
| 1230 | } |
| 1231 | while( mpi_cmp_int( d, 1 ) < 0 ); |
| 1232 | |
| 1233 | return( ecp_mul( grp, Q, d, &grp->G ) ); |
| 1234 | } |
Manuel Pégourié-Gonnard | efaa31e | 2012-11-06 21:34:35 +0100 | [diff] [blame] | 1235 | |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 1236 | #if defined(POLARSSL_SELF_TEST) |
| 1237 | |
Manuel Pégourié-Gonnard | b505c27 | 2012-11-05 17:27:54 +0100 | [diff] [blame] | 1238 | /* |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 1239 | * Checkup routine |
| 1240 | */ |
| 1241 | int ecp_self_test( int verbose ) |
| 1242 | { |
Manuel Pégourié-Gonnard | b4a310b | 2012-11-13 20:57:00 +0100 | [diff] [blame] | 1243 | int ret; |
| 1244 | size_t i; |
| 1245 | ecp_group grp; |
| 1246 | ecp_point R; |
| 1247 | mpi m; |
| 1248 | unsigned long add_c_prev, dbl_c_prev; |
| 1249 | char *exponents[] = |
| 1250 | { |
Manuel Pégourié-Gonnard | b63f9e9 | 2012-11-21 13:00:58 +0100 | [diff] [blame] | 1251 | "000000000000000000000000000000000000000000000000", /* zero */ |
| 1252 | "000000000000000000000000000000000000000000000001", /* one */ |
| 1253 | "FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831", /* N */ |
| 1254 | "5EA6F389A38B8BC81E767753B15AA5569E1782E30ABE7D25", /* random */ |
Manuel Pégourié-Gonnard | b4a310b | 2012-11-13 20:57:00 +0100 | [diff] [blame] | 1255 | "400000000000000000000000000000000000000000000000", |
| 1256 | "7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", |
| 1257 | "555555555555555555555555555555555555555555555555", |
Manuel Pégourié-Gonnard | b4a310b | 2012-11-13 20:57:00 +0100 | [diff] [blame] | 1258 | }; |
| 1259 | |
| 1260 | ecp_group_init( &grp ); |
| 1261 | ecp_point_init( &R ); |
| 1262 | mpi_init( &m ); |
| 1263 | |
| 1264 | MPI_CHK( ecp_use_known_dp( &grp, POLARSSL_ECP_DP_SECP192R1 ) ); |
| 1265 | |
| 1266 | if( verbose != 0 ) |
| 1267 | printf( " ECP test #1 (SPA resistance): " ); |
| 1268 | |
| 1269 | add_count = 0; |
| 1270 | dbl_count = 0; |
| 1271 | MPI_CHK( mpi_read_string( &m, 16, exponents[0] ) ); |
| 1272 | MPI_CHK( ecp_mul( &grp, &R, &m, &grp.G ) ); |
| 1273 | |
| 1274 | for( i = 1; i < sizeof( exponents ) / sizeof( exponents[0] ); i++ ) |
| 1275 | { |
| 1276 | add_c_prev = add_count; |
| 1277 | dbl_c_prev = dbl_count; |
| 1278 | add_count = 0; |
| 1279 | dbl_count = 0; |
| 1280 | |
| 1281 | MPI_CHK( mpi_read_string( &m, 16, exponents[i] ) ); |
| 1282 | MPI_CHK( ecp_mul( &grp, &R, &m, &grp.G ) ); |
| 1283 | |
| 1284 | if( add_count != add_c_prev || dbl_count != dbl_c_prev ) |
| 1285 | { |
| 1286 | if( verbose != 0 ) |
| 1287 | printf( "failed (%zu)\n", i ); |
| 1288 | |
| 1289 | ret = 1; |
| 1290 | goto cleanup; |
| 1291 | } |
| 1292 | } |
| 1293 | |
| 1294 | if( verbose != 0 ) |
| 1295 | printf( "passed\n" ); |
| 1296 | |
| 1297 | cleanup: |
| 1298 | |
| 1299 | if( ret < 0 && verbose != 0 ) |
| 1300 | printf( "Unexpected error, return code = %08X\n", ret ); |
| 1301 | |
| 1302 | ecp_group_free( &grp ); |
| 1303 | ecp_point_free( &R ); |
| 1304 | mpi_free( &m ); |
| 1305 | |
| 1306 | if( verbose != 0 ) |
| 1307 | printf( "\n" ); |
| 1308 | |
| 1309 | return( ret ); |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 1310 | } |
| 1311 | |
| 1312 | #endif |
| 1313 | |
| 1314 | #endif |