xref: /reactos/dll/3rdparty/mbedtls/ecdh.c (revision c2c66aff)
1 /*
2  *  Elliptic curve Diffie-Hellman
3  *
4  *  Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
5  *  SPDX-License-Identifier: GPL-2.0
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License along
18  *  with this program; if not, write to the Free Software Foundation, Inc.,
19  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  *  This file is part of mbed TLS (https://tls.mbed.org)
22  */
23 
24 /*
25  * References:
26  *
27  * SEC1 http://www.secg.org/index.php?action=secg,docs_secg
28  * RFC 4492
29  */
30 
31 #if !defined(MBEDTLS_CONFIG_FILE)
32 #include "mbedtls/config.h"
33 #else
34 #include MBEDTLS_CONFIG_FILE
35 #endif
36 
37 #if defined(MBEDTLS_ECDH_C)
38 
39 #include "mbedtls/ecdh.h"
40 
41 #include <string.h>
42 
43 /*
44  * Generate public key: simple wrapper around mbedtls_ecp_gen_keypair
45  */
46 int mbedtls_ecdh_gen_public( mbedtls_ecp_group *grp, mbedtls_mpi *d, mbedtls_ecp_point *Q,
47                      int (*f_rng)(void *, unsigned char *, size_t),
48                      void *p_rng )
49 {
50     return mbedtls_ecp_gen_keypair( grp, d, Q, f_rng, p_rng );
51 }
52 
53 /*
54  * Compute shared secret (SEC1 3.3.1)
55  */
56 int mbedtls_ecdh_compute_shared( mbedtls_ecp_group *grp, mbedtls_mpi *z,
57                          const mbedtls_ecp_point *Q, const mbedtls_mpi *d,
58                          int (*f_rng)(void *, unsigned char *, size_t),
59                          void *p_rng )
60 {
61     int ret;
62     mbedtls_ecp_point P;
63 
64     mbedtls_ecp_point_init( &P );
65 
66     /*
67      * Make sure Q is a valid pubkey before using it
68      */
69     MBEDTLS_MPI_CHK( mbedtls_ecp_check_pubkey( grp, Q ) );
70 
71     MBEDTLS_MPI_CHK( mbedtls_ecp_mul( grp, &P, d, Q, f_rng, p_rng ) );
72 
73     if( mbedtls_ecp_is_zero( &P ) )
74     {
75         ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
76         goto cleanup;
77     }
78 
79     MBEDTLS_MPI_CHK( mbedtls_mpi_copy( z, &P.X ) );
80 
81 cleanup:
82     mbedtls_ecp_point_free( &P );
83 
84     return( ret );
85 }
86 
87 /*
88  * Initialize context
89  */
90 void mbedtls_ecdh_init( mbedtls_ecdh_context *ctx )
91 {
92     memset( ctx, 0, sizeof( mbedtls_ecdh_context ) );
93 }
94 
95 /*
96  * Free context
97  */
98 void mbedtls_ecdh_free( mbedtls_ecdh_context *ctx )
99 {
100     if( ctx == NULL )
101         return;
102 
103     mbedtls_ecp_group_free( &ctx->grp );
104     mbedtls_ecp_point_free( &ctx->Q   );
105     mbedtls_ecp_point_free( &ctx->Qp  );
106     mbedtls_ecp_point_free( &ctx->Vi  );
107     mbedtls_ecp_point_free( &ctx->Vf  );
108     mbedtls_mpi_free( &ctx->d  );
109     mbedtls_mpi_free( &ctx->z  );
110     mbedtls_mpi_free( &ctx->_d );
111 }
112 
113 /*
114  * Setup and write the ServerKeyExhange parameters (RFC 4492)
115  *      struct {
116  *          ECParameters    curve_params;
117  *          ECPoint         public;
118  *      } ServerECDHParams;
119  */
120 int mbedtls_ecdh_make_params( mbedtls_ecdh_context *ctx, size_t *olen,
121                       unsigned char *buf, size_t blen,
122                       int (*f_rng)(void *, unsigned char *, size_t),
123                       void *p_rng )
124 {
125     int ret;
126     size_t grp_len, pt_len;
127 
128     if( ctx == NULL || ctx->grp.pbits == 0 )
129         return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
130 
131     if( ( ret = mbedtls_ecdh_gen_public( &ctx->grp, &ctx->d, &ctx->Q, f_rng, p_rng ) )
132                 != 0 )
133         return( ret );
134 
135     if( ( ret = mbedtls_ecp_tls_write_group( &ctx->grp, &grp_len, buf, blen ) )
136                 != 0 )
137         return( ret );
138 
139     buf += grp_len;
140     blen -= grp_len;
141 
142     if( ( ret = mbedtls_ecp_tls_write_point( &ctx->grp, &ctx->Q, ctx->point_format,
143                                      &pt_len, buf, blen ) ) != 0 )
144         return( ret );
145 
146     *olen = grp_len + pt_len;
147     return( 0 );
148 }
149 
150 /*
151  * Read the ServerKeyExhange parameters (RFC 4492)
152  *      struct {
153  *          ECParameters    curve_params;
154  *          ECPoint         public;
155  *      } ServerECDHParams;
156  */
157 int mbedtls_ecdh_read_params( mbedtls_ecdh_context *ctx,
158                       const unsigned char **buf, const unsigned char *end )
159 {
160     int ret;
161 
162     if( ( ret = mbedtls_ecp_tls_read_group( &ctx->grp, buf, end - *buf ) ) != 0 )
163         return( ret );
164 
165     if( ( ret = mbedtls_ecp_tls_read_point( &ctx->grp, &ctx->Qp, buf, end - *buf ) )
166                 != 0 )
167         return( ret );
168 
169     return( 0 );
170 }
171 
172 /*
173  * Get parameters from a keypair
174  */
175 int mbedtls_ecdh_get_params( mbedtls_ecdh_context *ctx, const mbedtls_ecp_keypair *key,
176                      mbedtls_ecdh_side side )
177 {
178     int ret;
179 
180     if( ( ret = mbedtls_ecp_group_copy( &ctx->grp, &key->grp ) ) != 0 )
181         return( ret );
182 
183     /* If it's not our key, just import the public part as Qp */
184     if( side == MBEDTLS_ECDH_THEIRS )
185         return( mbedtls_ecp_copy( &ctx->Qp, &key->Q ) );
186 
187     /* Our key: import public (as Q) and private parts */
188     if( side != MBEDTLS_ECDH_OURS )
189         return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
190 
191     if( ( ret = mbedtls_ecp_copy( &ctx->Q, &key->Q ) ) != 0 ||
192         ( ret = mbedtls_mpi_copy( &ctx->d, &key->d ) ) != 0 )
193         return( ret );
194 
195     return( 0 );
196 }
197 
198 /*
199  * Setup and export the client public value
200  */
201 int mbedtls_ecdh_make_public( mbedtls_ecdh_context *ctx, size_t *olen,
202                       unsigned char *buf, size_t blen,
203                       int (*f_rng)(void *, unsigned char *, size_t),
204                       void *p_rng )
205 {
206     int ret;
207 
208     if( ctx == NULL || ctx->grp.pbits == 0 )
209         return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
210 
211     if( ( ret = mbedtls_ecdh_gen_public( &ctx->grp, &ctx->d, &ctx->Q, f_rng, p_rng ) )
212                 != 0 )
213         return( ret );
214 
215     return mbedtls_ecp_tls_write_point( &ctx->grp, &ctx->Q, ctx->point_format,
216                                 olen, buf, blen );
217 }
218 
219 /*
220  * Parse and import the client's public value
221  */
222 int mbedtls_ecdh_read_public( mbedtls_ecdh_context *ctx,
223                       const unsigned char *buf, size_t blen )
224 {
225     int ret;
226     const unsigned char *p = buf;
227 
228     if( ctx == NULL )
229         return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
230 
231     if( ( ret = mbedtls_ecp_tls_read_point( &ctx->grp, &ctx->Qp, &p, blen ) ) != 0 )
232         return( ret );
233 
234     if( (size_t)( p - buf ) != blen )
235         return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
236 
237     return( 0 );
238 }
239 
240 /*
241  * Derive and export the shared secret
242  */
243 int mbedtls_ecdh_calc_secret( mbedtls_ecdh_context *ctx, size_t *olen,
244                       unsigned char *buf, size_t blen,
245                       int (*f_rng)(void *, unsigned char *, size_t),
246                       void *p_rng )
247 {
248     int ret;
249 
250     if( ctx == NULL )
251         return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
252 
253     if( ( ret = mbedtls_ecdh_compute_shared( &ctx->grp, &ctx->z, &ctx->Qp, &ctx->d,
254                                      f_rng, p_rng ) ) != 0 )
255     {
256         return( ret );
257     }
258 
259     if( mbedtls_mpi_size( &ctx->z ) > blen )
260         return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
261 
262     *olen = ctx->grp.pbits / 8 + ( ( ctx->grp.pbits % 8 ) != 0 );
263     return mbedtls_mpi_write_binary( &ctx->z, buf, *olen );
264 }
265 
266 #endif /* MBEDTLS_ECDH_C */
267