blob: d76596eb2d1dd8ef448c7b62111fdf8e3f007f62 [file] [log] [blame]
Manuel Pégourié-Gonnard0bad5c22013-01-26 15:30:46 +01001/*
2 * Elliptic curve Diffie-Hellman
3 *
4 * Copyright (C) 2006-2013, Brainspark B.V.
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 *
29 * SEC1 http://www.secg.org/index.php?action=secg,docs_secg
Manuel Pégourié-Gonnard63533e42013-02-10 14:21:04 +010030 * RFC 4492
Manuel Pégourié-Gonnard0bad5c22013-01-26 15:30:46 +010031 */
32
33#include "polarssl/config.h"
34
Manuel Pégourié-Gonnard2aea1412013-01-26 16:33:44 +010035#if defined(POLARSSL_ECDH_C)
Manuel Pégourié-Gonnard0bad5c22013-01-26 15:30:46 +010036
37#include "polarssl/ecdh.h"
38
Manuel Pégourié-Gonnard6545ca72013-01-26 16:05:22 +010039/*
40 * Generate public key: simple wrapper around ecp_gen_keypair
41 */
42int ecdh_gen_public( const ecp_group *grp, mpi *d, ecp_point *Q,
43 int (*f_rng)(void *, unsigned char *, size_t),
44 void *p_rng )
45{
46 return ecp_gen_keypair( grp, d, Q, f_rng, p_rng );
47}
48
49/*
50 * Compute shared secret (SEC1 3.3.1)
51 */
52int ecdh_compute_shared( const ecp_group *grp, mpi *z,
53 const ecp_point *Q, const mpi *d )
54{
55 int ret;
56 ecp_point P;
57
58 ecp_point_init( &P );
59
60 /*
61 * Make sure Q is a valid pubkey before using it
62 */
63 MPI_CHK( ecp_check_pubkey( grp, Q ) );
64
65 MPI_CHK( ecp_mul( grp, &P, d, Q ) );
66
67 if( ecp_is_zero( &P ) )
Paul Bakkerb548d772013-07-26 14:21:34 +020068 {
69 ret = POLARSSL_ERR_ECP_BAD_INPUT_DATA;
70 goto cleanup;
71 }
Manuel Pégourié-Gonnard6545ca72013-01-26 16:05:22 +010072
73 MPI_CHK( mpi_copy( z, &P.X ) );
74
75cleanup:
76 ecp_point_free( &P );
77
78 return( ret );
79}
80
Manuel Pégourié-Gonnard63533e42013-02-10 14:21:04 +010081/*
82 * Initialize context
83 */
84void ecdh_init( ecdh_context *ctx )
85{
86 ecp_group_init( &ctx->grp );
87 mpi_init ( &ctx->d );
88 ecp_point_init( &ctx->Q );
89 ecp_point_init( &ctx->Qp );
90 mpi_init ( &ctx->z );
Manuel Pégourié-Gonnard13724762013-02-10 15:01:54 +010091 ctx->point_format = POLARSSL_ECP_PF_UNCOMPRESSED;
Manuel Pégourié-Gonnard63533e42013-02-10 14:21:04 +010092}
93
Manuel Pégourié-Gonnard63533e42013-02-10 14:21:04 +010094/*
95 * Free context
96 */
97void ecdh_free( ecdh_context *ctx )
98{
99 if( ctx == NULL )
100 return;
101
102 ecp_group_free( &ctx->grp );
103 mpi_free ( &ctx->d );
104 ecp_point_free( &ctx->Q );
105 ecp_point_free( &ctx->Qp );
106 mpi_free ( &ctx->z );
107}
108
Manuel Pégourié-Gonnard13724762013-02-10 15:01:54 +0100109/*
Manuel Pégourié-Gonnard854fbd72013-02-11 20:28:55 +0100110 * Setup and write the ServerKeyExhange parameters (RFC 4492)
Manuel Pégourié-Gonnard13724762013-02-10 15:01:54 +0100111 * struct {
112 * ECParameters curve_params;
113 * ECPoint public;
114 * } ServerECDHParams;
115 */
Manuel Pégourié-Gonnard854fbd72013-02-11 20:28:55 +0100116int ecdh_make_params( ecdh_context *ctx, size_t *olen,
117 unsigned char *buf, size_t blen,
118 int (*f_rng)(void *, unsigned char *, size_t),
119 void *p_rng )
Manuel Pégourié-Gonnard13724762013-02-10 15:01:54 +0100120{
121 int ret;
122 size_t grp_len, pt_len;
123
Manuel Pégourié-Gonnardf35b7392013-02-11 22:12:39 +0100124 if( ctx == NULL || ctx->grp.pbits == 0 )
125 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
126
Manuel Pégourié-Gonnard13724762013-02-10 15:01:54 +0100127 if( ( ret = ecdh_gen_public( &ctx->grp, &ctx->d, &ctx->Q, f_rng, p_rng ) )
128 != 0 )
129 return( ret );
130
131 if( ( ret = ecp_tls_write_group( &ctx->grp, &grp_len, buf, blen ) )
132 != 0 )
133 return( ret );
134
135 buf += grp_len;
136 blen -= grp_len;
137
138 if( ( ret = ecp_tls_write_point( &ctx->grp, &ctx->Q, ctx->point_format,
139 &pt_len, buf, blen ) ) != 0 )
140 return( ret );
141
142 *olen = grp_len + pt_len;
143 return 0;
144}
145
Manuel Pégourié-Gonnard854fbd72013-02-11 20:28:55 +0100146/*
147 * Read the ServerKeyExhange parameters (RFC 4492)
148 * struct {
149 * ECParameters curve_params;
150 * ECPoint public;
151 * } ServerECDHParams;
152 */
153int ecdh_read_params( ecdh_context *ctx,
154 const unsigned char **buf, const unsigned char *end )
155{
156 int ret;
157
158 if( ( ret = ecp_tls_read_group( &ctx->grp, buf, end - *buf ) ) != 0 )
159 return( ret );
160
161 if( ( ret = ecp_tls_read_point( &ctx->grp, &ctx->Qp, buf, end - *buf ) )
162 != 0 )
163 return( ret );
164
165 return 0;
166}
Manuel Pégourié-Gonnard0bad5c22013-01-26 15:30:46 +0100167
Manuel Pégourié-Gonnard5cceb412013-02-11 21:51:45 +0100168/*
169 * Setup and export the client public value
170 */
171int ecdh_make_public( ecdh_context *ctx, size_t *olen,
172 unsigned char *buf, size_t blen,
173 int (*f_rng)(void *, unsigned char *, size_t),
174 void *p_rng )
175{
176 int ret;
177
Manuel Pégourié-Gonnardf35b7392013-02-11 22:12:39 +0100178 if( ctx == NULL || ctx->grp.pbits == 0 )
179 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
180
Manuel Pégourié-Gonnard5cceb412013-02-11 21:51:45 +0100181 if( ( ret = ecdh_gen_public( &ctx->grp, &ctx->d, &ctx->Q, f_rng, p_rng ) )
182 != 0 )
183 return( ret );
184
185 return ecp_tls_write_point( &ctx->grp, &ctx->Q, ctx->point_format,
186 olen, buf, blen );
187}
188
189/*
190 * Parse and import the client's public value
191 */
192int ecdh_read_public( ecdh_context *ctx,
193 const unsigned char *buf, size_t blen )
194{
Manuel Pégourié-Gonnardf35b7392013-02-11 22:12:39 +0100195 if( ctx == NULL )
196 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
197
Manuel Pégourié-Gonnard5cceb412013-02-11 21:51:45 +0100198 return ecp_tls_read_point( &ctx->grp, &ctx->Qp, &buf, blen );
199}
200
Manuel Pégourié-Gonnard424fda52013-02-11 22:05:42 +0100201/*
202 * Derive and export the shared secret
203 */
204int ecdh_calc_secret( ecdh_context *ctx, size_t *olen,
205 unsigned char *buf, size_t blen )
206{
207 int ret;
208
Manuel Pégourié-Gonnardf35b7392013-02-11 22:12:39 +0100209 if( ctx == NULL )
210 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
211
Manuel Pégourié-Gonnard424fda52013-02-11 22:05:42 +0100212 if( ( ret = ecdh_compute_shared( &ctx->grp, &ctx->z, &ctx->Qp, &ctx->d ) )
213 != 0 )
214 return( ret );
215
Paul Bakker41c83d32013-03-20 14:39:14 +0100216 if( mpi_size( &ctx->z ) > blen )
217 return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
218
219 *olen = ctx->grp.nbits / 8 + ( ( ctx->grp.nbits % 8 ) != 0 );
220 return mpi_write_binary( &ctx->z, buf, *olen );
Manuel Pégourié-Gonnard424fda52013-02-11 22:05:42 +0100221}
222
223
Manuel Pégourié-Gonnard0bad5c22013-01-26 15:30:46 +0100224#if defined(POLARSSL_SELF_TEST)
225
226/*
227 * Checkup routine
228 */
229int ecdh_self_test( int verbose )
230{
231 return( verbose++ );
232}
233
234#endif
235
Manuel Pégourié-Gonnard2aea1412013-01-26 16:33:44 +0100236#endif /* defined(POLARSSL_ECDH_C) */