blob: 31abb0cb8e966e21a2942b2947716d52dcb75d7e [file] [log] [blame]
Paul Bakker15b9b3a2013-09-23 12:05:44 +02001/*
2 * Key generation application
3 *
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02004 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker15b9b3a2013-09-23 12:05:44 +020018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker15b9b3a2013-09-23 12:05:44 +020020 */
21
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020024#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020026#endif
Paul Bakker15b9b3a2013-09-23 12:05:44 +020027
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000029#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000030#else
Rich Evans18b78c72015-02-11 14:06:19 +000031#include <stdio.h>
Andres Amaya Garcia7c55e792018-04-29 19:51:56 +010032#include <stdlib.h>
33#define mbedtls_printf printf
Andres Amaya Garcia2b0599b2018-04-30 22:42:33 +010034#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
Andres Amaya Garcia7c55e792018-04-29 19:51:56 +010035#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
36#endif /* MBEDTLS_PLATFORM_C */
Rich Evansf90016a2015-01-19 14:26:37 +000037
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020038#if defined(MBEDTLS_PK_WRITE_C) && defined(MBEDTLS_FS_IO) && \
39 defined(MBEDTLS_ENTROPY_C) && defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000040#include "mbedtls/error.h"
41#include "mbedtls/pk.h"
42#include "mbedtls/ecdsa.h"
43#include "mbedtls/rsa.h"
44#include "mbedtls/error.h"
45#include "mbedtls/entropy.h"
46#include "mbedtls/ctr_drbg.h"
Paul Bakker15b9b3a2013-09-23 12:05:44 +020047
Rich Evans18b78c72015-02-11 14:06:19 +000048#include <stdio.h>
49#include <stdlib.h>
50#include <string.h>
Paul Bakker15b9b3a2013-09-23 12:05:44 +020051
Rich Evans18b78c72015-02-11 14:06:19 +000052#if !defined(_WIN32)
53#include <unistd.h>
Paul Bakker1cfc4582014-04-09 15:25:13 +020054
55#define DEV_RANDOM_THRESHOLD 32
56
57int dev_random_entropy_poll( void *data, unsigned char *output,
58 size_t len, size_t *olen )
59{
60 FILE *file;
61 size_t ret, left = len;
62 unsigned char *p = output;
63 ((void) data);
64
65 *olen = 0;
66
67 file = fopen( "/dev/random", "rb" );
68 if( file == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020069 return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED );
Paul Bakker1cfc4582014-04-09 15:25:13 +020070
71 while( left > 0 )
72 {
73 /* /dev/random can return much less than requested. If so, try again */
74 ret = fread( p, 1, left, file );
75 if( ret == 0 && ferror( file ) )
76 {
77 fclose( file );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020078 return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED );
Paul Bakker1cfc4582014-04-09 15:25:13 +020079 }
80
81 p += ret;
82 left -= ret;
83 sleep( 1 );
84 }
85 fclose( file );
86 *olen = len;
87
88 return( 0 );
89}
Rich Evans18b78c72015-02-11 14:06:19 +000090#endif /* !_WIN32 */
91#endif
92
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020093#if defined(MBEDTLS_ECP_C)
94#define DFL_EC_CURVE mbedtls_ecp_curve_list()->grp_id
Rich Evans18b78c72015-02-11 14:06:19 +000095#else
96#define DFL_EC_CURVE 0
97#endif
98
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020099#if !defined(_WIN32) && defined(MBEDTLS_FS_IO)
Rich Evans18b78c72015-02-11 14:06:19 +0000100#define USAGE_DEV_RANDOM \
101 " use_dev_random=0|1 default: 0\n"
102#else
103#define USAGE_DEV_RANDOM ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200104#endif /* !_WIN32 && MBEDTLS_FS_IO */
Paul Bakker1cfc4582014-04-09 15:25:13 +0200105
Rich Evans18b78c72015-02-11 14:06:19 +0000106#define FORMAT_PEM 0
107#define FORMAT_DER 1
108
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200109#define DFL_TYPE MBEDTLS_PK_RSA
Rich Evans18b78c72015-02-11 14:06:19 +0000110#define DFL_RSA_KEYSIZE 4096
111#define DFL_FILENAME "keyfile.key"
112#define DFL_FORMAT FORMAT_PEM
113#define DFL_USE_DEV_RANDOM 0
114
115#define USAGE \
116 "\n usage: gen_key param=<>...\n" \
117 "\n acceptable parameters:\n" \
118 " type=rsa|ec default: rsa\n" \
119 " rsa_keysize=%%d default: 4096\n" \
120 " ec_curve=%%s see below\n" \
121 " filename=%%s default: keyfile.key\n" \
122 " format=pem|der default: pem\n" \
123 USAGE_DEV_RANDOM \
124 "\n"
125
Simon Butcher604d3992016-10-06 19:02:49 +0100126#if !defined(MBEDTLS_PK_WRITE_C) || !defined(MBEDTLS_PEM_WRITE_C) || \
127 !defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_ENTROPY_C) || \
128 !defined(MBEDTLS_CTR_DRBG_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000129int main( void )
Rich Evans18b78c72015-02-11 14:06:19 +0000130{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200131 mbedtls_printf( "MBEDTLS_PK_WRITE_C and/or MBEDTLS_FS_IO and/or "
Simon Butcher604d3992016-10-06 19:02:49 +0100132 "MBEDTLS_ENTROPY_C and/or MBEDTLS_CTR_DRBG_C and/or "
133 "MBEDTLS_PEM_WRITE_C"
Rich Evans18b78c72015-02-11 14:06:19 +0000134 "not defined.\n" );
135 return( 0 );
136}
137#else
138/*
139 * global options
140 */
141struct options
142{
143 int type; /* the type of key to generate */
144 int rsa_keysize; /* length of key in bits */
145 int ec_curve; /* curve identifier for EC keys */
146 const char *filename; /* filename of the key file */
147 int format; /* the output format to use */
148 int use_dev_random; /* use /dev/random as entropy source */
149} opt;
150
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200151static int write_private_key( mbedtls_pk_context *key, const char *output_file )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200152{
153 int ret;
154 FILE *f;
155 unsigned char output_buf[16000];
156 unsigned char *c = output_buf;
157 size_t len = 0;
158
159 memset(output_buf, 0, 16000);
160 if( opt.format == FORMAT_PEM )
161 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200162 if( ( ret = mbedtls_pk_write_key_pem( key, output_buf, 16000 ) ) != 0 )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200163 return( ret );
164
165 len = strlen( (char *) output_buf );
166 }
167 else
168 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200169 if( ( ret = mbedtls_pk_write_key_der( key, output_buf, 16000 ) ) < 0 )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200170 return( ret );
171
172 len = ret;
Paul Bakker3c38f292014-06-13 17:37:46 +0200173 c = output_buf + sizeof(output_buf) - len;
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200174 }
175
Paul Bakker3966d712014-07-10 12:03:09 +0200176 if( ( f = fopen( output_file, "wb" ) ) == NULL )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200177 return( -1 );
178
179 if( fwrite( c, 1, len, f ) != len )
Paul Bakker0c226102014-04-17 16:02:36 +0200180 {
181 fclose( f );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200182 return( -1 );
Paul Bakker0c226102014-04-17 16:02:36 +0200183 }
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200184
Paul Bakker0c226102014-04-17 16:02:36 +0200185 fclose( f );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200186
187 return( 0 );
188}
189
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200190int main( int argc, char *argv[] )
191{
Andres Amaya Garcia7c55e792018-04-29 19:51:56 +0100192 int ret = 1;
193 int exit_code = MBEDTLS_EXIT_FAILURE;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200194 mbedtls_pk_context key;
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200195 char buf[1024];
196 int i;
197 char *p, *q;
Hanno Becker83aad1f2017-08-23 06:45:10 +0100198 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200199 mbedtls_entropy_context entropy;
200 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200201 const char *pers = "gen_key";
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200202#if defined(MBEDTLS_ECP_C)
203 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnard6e16cdb2013-11-30 15:32:47 +0100204#endif
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200205
206 /*
207 * Set to sane values
208 */
Hanno Becker83aad1f2017-08-23 06:45:10 +0100209
210 mbedtls_mpi_init( &N ); mbedtls_mpi_init( &P ); mbedtls_mpi_init( &Q );
211 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP );
212 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP );
213
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200214 mbedtls_pk_init( &key );
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +0200215 mbedtls_ctr_drbg_init( &ctr_drbg );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200216 memset( buf, 0, sizeof( buf ) );
217
218 if( argc == 0 )
219 {
220 usage:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200221 mbedtls_printf( USAGE );
222#if defined(MBEDTLS_ECP_C)
James Cowgill07a92d72015-10-09 00:28:14 +0100223 mbedtls_printf( " available ec_curve values:\n" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200224 curve_info = mbedtls_ecp_curve_list();
225 mbedtls_printf( " %s (default)\n", curve_info->name );
Manuel Pégourié-Gonnard6e16cdb2013-11-30 15:32:47 +0100226 while( ( ++curve_info )->name != NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200227 mbedtls_printf( " %s\n", curve_info->name );
Andres Amaya Garcia7c55e792018-04-29 19:51:56 +0100228#endif /* MBEDTLS_ECP_C */
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200229 goto exit;
230 }
231
232 opt.type = DFL_TYPE;
233 opt.rsa_keysize = DFL_RSA_KEYSIZE;
Manuel Pégourié-Gonnard6e16cdb2013-11-30 15:32:47 +0100234 opt.ec_curve = DFL_EC_CURVE;
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200235 opt.filename = DFL_FILENAME;
236 opt.format = DFL_FORMAT;
Paul Bakker1cfc4582014-04-09 15:25:13 +0200237 opt.use_dev_random = DFL_USE_DEV_RANDOM;
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200238
239 for( i = 1; i < argc; i++ )
240 {
241 p = argv[i];
242 if( ( q = strchr( p, '=' ) ) == NULL )
243 goto usage;
244 *q++ = '\0';
245
246 if( strcmp( p, "type" ) == 0 )
247 {
248 if( strcmp( q, "rsa" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200249 opt.type = MBEDTLS_PK_RSA;
Paul Bakker247b4872014-02-06 14:33:52 +0100250 else if( strcmp( q, "ec" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200251 opt.type = MBEDTLS_PK_ECKEY;
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200252 else
253 goto usage;
254 }
255 else if( strcmp( p, "format" ) == 0 )
256 {
257 if( strcmp( q, "pem" ) == 0 )
258 opt.format = FORMAT_PEM;
259 else if( strcmp( q, "der" ) == 0 )
260 opt.format = FORMAT_DER;
261 else
262 goto usage;
263 }
264 else if( strcmp( p, "rsa_keysize" ) == 0 )
265 {
266 opt.rsa_keysize = atoi( q );
Manuel Pégourié-Gonnarda39416f2014-07-21 17:10:16 +0200267 if( opt.rsa_keysize < 1024 ||
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200268 opt.rsa_keysize > MBEDTLS_MPI_MAX_BITS )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200269 goto usage;
270 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200271#if defined(MBEDTLS_ECP_C)
Manuel Pégourié-Gonnard6e16cdb2013-11-30 15:32:47 +0100272 else if( strcmp( p, "ec_curve" ) == 0 )
273 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200274 if( ( curve_info = mbedtls_ecp_curve_info_from_name( q ) ) == NULL )
Manuel Pégourié-Gonnard6e16cdb2013-11-30 15:32:47 +0100275 goto usage;
276 opt.ec_curve = curve_info->grp_id;
277 }
Paul Bakkerd153ef32014-08-18 12:00:28 +0200278#endif
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200279 else if( strcmp( p, "filename" ) == 0 )
280 opt.filename = q;
Paul Bakker1cfc4582014-04-09 15:25:13 +0200281 else if( strcmp( p, "use_dev_random" ) == 0 )
282 {
283 opt.use_dev_random = atoi( q );
284 if( opt.use_dev_random < 0 || opt.use_dev_random > 1 )
285 goto usage;
286 }
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200287 else
288 goto usage;
289 }
290
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200291 mbedtls_printf( "\n . Seeding the random number generator..." );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200292 fflush( stdout );
293
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200294 mbedtls_entropy_init( &entropy );
295#if !defined(_WIN32) && defined(MBEDTLS_FS_IO)
Paul Bakker1cfc4582014-04-09 15:25:13 +0200296 if( opt.use_dev_random )
297 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200298 if( ( ret = mbedtls_entropy_add_source( &entropy, dev_random_entropy_poll,
Manuel Pégourié-Gonnard7580ba42015-06-19 10:26:32 +0200299 NULL, DEV_RANDOM_THRESHOLD,
300 MBEDTLS_ENTROPY_SOURCE_STRONG ) ) != 0 )
Paul Bakker1cfc4582014-04-09 15:25:13 +0200301 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200302 mbedtls_printf( " failed\n ! mbedtls_entropy_add_source returned -0x%04x\n", -ret );
Paul Bakker1cfc4582014-04-09 15:25:13 +0200303 goto exit;
304 }
305
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200306 mbedtls_printf("\n Using /dev/random, so can take a long time! " );
Paul Bakker1cfc4582014-04-09 15:25:13 +0200307 fflush( stdout );
308 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200309#endif /* !_WIN32 && MBEDTLS_FS_IO */
Paul Bakker1cfc4582014-04-09 15:25:13 +0200310
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +0200311 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy,
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200312 (const unsigned char *) pers,
313 strlen( pers ) ) ) != 0 )
314 {
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +0200315 mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned -0x%04x\n", -ret );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200316 goto exit;
317 }
318
319 /*
320 * 1.1. Generate the key
321 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200322 mbedtls_printf( "\n . Generating the private key ..." );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200323 fflush( stdout );
324
Hanno Beckerdc631fb2018-11-05 16:54:40 +0000325 if( ( ret = mbedtls_pk_setup( &key,
326 mbedtls_pk_info_from_type( (mbedtls_pk_type_t) opt.type ) ) ) != 0 )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200327 {
Manuel Pégourié-Gonnardd9e6a3a2015-05-14 19:41:36 +0200328 mbedtls_printf( " failed\n ! mbedtls_pk_setup returned -0x%04x", -ret );
Manuel Pégourié-Gonnard8c237712013-11-30 14:36:54 +0100329 goto exit;
330 }
331
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200332#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
333 if( opt.type == MBEDTLS_PK_RSA )
Manuel Pégourié-Gonnard8c237712013-11-30 14:36:54 +0100334 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200335 ret = mbedtls_rsa_gen_key( mbedtls_pk_rsa( key ), mbedtls_ctr_drbg_random, &ctr_drbg,
Hanno Becker83aad1f2017-08-23 06:45:10 +0100336 opt.rsa_keysize, 65537 );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200337 if( ret != 0 )
338 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200339 mbedtls_printf( " failed\n ! mbedtls_rsa_gen_key returned -0x%04x", -ret );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200340 goto exit;
341 }
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200342 }
343 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200344#endif /* MBEDTLS_RSA_C */
345#if defined(MBEDTLS_ECP_C)
346 if( opt.type == MBEDTLS_PK_ECKEY )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200347 {
Hanno Beckerdc631fb2018-11-05 16:54:40 +0000348 ret = mbedtls_ecp_gen_key( (mbedtls_ecp_group_id) opt.ec_curve,
349 mbedtls_pk_ec( key ),
Hanno Becker83aad1f2017-08-23 06:45:10 +0100350 mbedtls_ctr_drbg_random, &ctr_drbg );
Manuel Pégourié-Gonnard8c237712013-11-30 14:36:54 +0100351 if( ret != 0 )
352 {
Chris Xue9a51c032017-11-05 19:10:51 +0000353 mbedtls_printf( " failed\n ! mbedtls_ecp_gen_key returned -0x%04x", -ret );
Manuel Pégourié-Gonnard8c237712013-11-30 14:36:54 +0100354 goto exit;
355 }
356 }
357 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200358#endif /* MBEDTLS_ECP_C */
Manuel Pégourié-Gonnard8c237712013-11-30 14:36:54 +0100359 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200360 mbedtls_printf( " failed\n ! key type not supported\n" );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200361 goto exit;
362 }
363
364 /*
365 * 1.2 Print the key
366 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200367 mbedtls_printf( " ok\n . Key information:\n" );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200368
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200369#if defined(MBEDTLS_RSA_C)
370 if( mbedtls_pk_get_type( &key ) == MBEDTLS_PK_RSA )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200371 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200372 mbedtls_rsa_context *rsa = mbedtls_pk_rsa( key );
Hanno Becker83aad1f2017-08-23 06:45:10 +0100373
374 if( ( ret = mbedtls_rsa_export ( rsa, &N, &P, &Q, &D, &E ) ) != 0 ||
375 ( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 )
376 {
377 mbedtls_printf( " failed\n ! could not export RSA parameters\n\n" );
378 goto exit;
379 }
380
381 mbedtls_mpi_write_file( "N: ", &N, 16, NULL );
382 mbedtls_mpi_write_file( "E: ", &E, 16, NULL );
383 mbedtls_mpi_write_file( "D: ", &D, 16, NULL );
384 mbedtls_mpi_write_file( "P: ", &P, 16, NULL );
385 mbedtls_mpi_write_file( "Q: ", &Q, 16, NULL );
386 mbedtls_mpi_write_file( "DP: ", &DP, 16, NULL );
387 mbedtls_mpi_write_file( "DQ: ", &DQ, 16, NULL );
388 mbedtls_mpi_write_file( "QP: ", &QP, 16, NULL );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200389 }
390 else
391#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200392#if defined(MBEDTLS_ECP_C)
393 if( mbedtls_pk_get_type( &key ) == MBEDTLS_PK_ECKEY )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200394 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200395 mbedtls_ecp_keypair *ecp = mbedtls_pk_ec( key );
396 mbedtls_printf( "curve: %s\n",
397 mbedtls_ecp_curve_info_from_grp_id( ecp->grp.id )->name );
398 mbedtls_mpi_write_file( "X_Q: ", &ecp->Q.X, 16, NULL );
399 mbedtls_mpi_write_file( "Y_Q: ", &ecp->Q.Y, 16, NULL );
400 mbedtls_mpi_write_file( "D: ", &ecp->d , 16, NULL );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200401 }
402 else
403#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200404 mbedtls_printf(" ! key type not supported\n");
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200405
Manuel Pégourié-Gonnarda39416f2014-07-21 17:10:16 +0200406 /*
407 * 1.3 Export key
408 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200409 mbedtls_printf( " . Writing key to file..." );
Manuel Pégourié-Gonnarda39416f2014-07-21 17:10:16 +0200410
411 if( ( ret = write_private_key( &key, opt.filename ) ) != 0 )
412 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200413 mbedtls_printf( " failed\n" );
Manuel Pégourié-Gonnarda39416f2014-07-21 17:10:16 +0200414 goto exit;
415 }
416
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200417 mbedtls_printf( " ok\n" );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200418
Andres Amaya Garcia7c55e792018-04-29 19:51:56 +0100419 exit_code = MBEDTLS_EXIT_SUCCESS;
420
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200421exit:
422
Andres Amaya Garcia7c55e792018-04-29 19:51:56 +0100423 if( exit_code != MBEDTLS_EXIT_SUCCESS )
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200424 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200425#ifdef MBEDTLS_ERROR_C
426 mbedtls_strerror( ret, buf, sizeof( buf ) );
427 mbedtls_printf( " - %s\n", buf );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200428#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200429 mbedtls_printf("\n");
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200430#endif
431 }
432
Hanno Becker83aad1f2017-08-23 06:45:10 +0100433 mbedtls_mpi_free( &N ); mbedtls_mpi_free( &P ); mbedtls_mpi_free( &Q );
434 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP );
435 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP );
436
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200437 mbedtls_pk_free( &key );
438 mbedtls_ctr_drbg_free( &ctr_drbg );
439 mbedtls_entropy_free( &entropy );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200440
441#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200442 mbedtls_printf( " + Press Enter to exit this program.\n" );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200443 fflush( stdout ); getchar();
444#endif
445
Andres Amaya Garcia7c55e792018-04-29 19:51:56 +0100446 return( exit_code );
Paul Bakker15b9b3a2013-09-23 12:05:44 +0200447}
Simon Butcher604d3992016-10-06 19:02:49 +0100448#endif /* MBEDTLS_PK_WRITE_C && MBEDTLS_PEM_WRITE_C && MBEDTLS_FS_IO &&
449 * MBEDTLS_ENTROPY_C && MBEDTLS_CTR_DRBG_C */