2013-09-23 12:05:44 +02:00
|
|
|
/*
|
|
|
|
* Key generation application
|
|
|
|
*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-09-23 12:05:44 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-09-23 12:05:44 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-09-23 12:05:44 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2013-09-23 12:05:44 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2013-09-23 12:05:44 +02:00
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2013-09-23 12:05:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2015-01-19 15:26:37 +01:00
|
|
|
#else
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
2018-04-29 20:51:56 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#define mbedtls_printf printf
|
2018-12-10 14:31:45 +01:00
|
|
|
#define mbedtls_exit exit
|
2018-04-30 23:42:33 +02:00
|
|
|
#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
|
2018-04-29 20:51:56 +02:00
|
|
|
#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
|
|
|
|
#endif /* MBEDTLS_PLATFORM_C */
|
2015-01-19 15:26:37 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PK_WRITE_C) && defined(MBEDTLS_FS_IO) && \
|
|
|
|
defined(MBEDTLS_ENTROPY_C) && defined(MBEDTLS_CTR_DRBG_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/pk.h"
|
|
|
|
#include "mbedtls/ecdsa.h"
|
|
|
|
#include "mbedtls/rsa.h"
|
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
2013-09-23 12:05:44 +02:00
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-09-23 12:05:44 +02:00
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
#if !defined(_WIN32)
|
|
|
|
#include <unistd.h>
|
2014-04-09 15:25:13 +02:00
|
|
|
|
|
|
|
#define DEV_RANDOM_THRESHOLD 32
|
|
|
|
|
|
|
|
int dev_random_entropy_poll( void *data, unsigned char *output,
|
|
|
|
size_t len, size_t *olen )
|
|
|
|
{
|
|
|
|
FILE *file;
|
|
|
|
size_t ret, left = len;
|
|
|
|
unsigned char *p = output;
|
|
|
|
((void) data);
|
|
|
|
|
|
|
|
*olen = 0;
|
|
|
|
|
|
|
|
file = fopen( "/dev/random", "rb" );
|
|
|
|
if( file == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED );
|
2014-04-09 15:25:13 +02:00
|
|
|
|
|
|
|
while( left > 0 )
|
|
|
|
{
|
|
|
|
/* /dev/random can return much less than requested. If so, try again */
|
|
|
|
ret = fread( p, 1, left, file );
|
|
|
|
if( ret == 0 && ferror( file ) )
|
|
|
|
{
|
|
|
|
fclose( file );
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED );
|
2014-04-09 15:25:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p += ret;
|
|
|
|
left -= ret;
|
|
|
|
sleep( 1 );
|
|
|
|
}
|
|
|
|
fclose( file );
|
|
|
|
*olen = len;
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2015-02-11 15:06:19 +01:00
|
|
|
#endif /* !_WIN32 */
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
#define DFL_EC_CURVE mbedtls_ecp_curve_list()->grp_id
|
2015-02-11 15:06:19 +01:00
|
|
|
#else
|
|
|
|
#define DFL_EC_CURVE 0
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(_WIN32) && defined(MBEDTLS_FS_IO)
|
2015-02-11 15:06:19 +01:00
|
|
|
#define USAGE_DEV_RANDOM \
|
|
|
|
" use_dev_random=0|1 default: 0\n"
|
|
|
|
#else
|
|
|
|
#define USAGE_DEV_RANDOM ""
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* !_WIN32 && MBEDTLS_FS_IO */
|
2014-04-09 15:25:13 +02:00
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
#define FORMAT_PEM 0
|
|
|
|
#define FORMAT_DER 1
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#define DFL_TYPE MBEDTLS_PK_RSA
|
2015-02-11 15:06:19 +01:00
|
|
|
#define DFL_RSA_KEYSIZE 4096
|
|
|
|
#define DFL_FILENAME "keyfile.key"
|
|
|
|
#define DFL_FORMAT FORMAT_PEM
|
|
|
|
#define DFL_USE_DEV_RANDOM 0
|
|
|
|
|
|
|
|
#define USAGE \
|
|
|
|
"\n usage: gen_key param=<>...\n" \
|
|
|
|
"\n acceptable parameters:\n" \
|
|
|
|
" type=rsa|ec default: rsa\n" \
|
|
|
|
" rsa_keysize=%%d default: 4096\n" \
|
|
|
|
" ec_curve=%%s see below\n" \
|
|
|
|
" filename=%%s default: keyfile.key\n" \
|
|
|
|
" format=pem|der default: pem\n" \
|
|
|
|
USAGE_DEV_RANDOM \
|
|
|
|
"\n"
|
|
|
|
|
2016-10-06 20:02:49 +02:00
|
|
|
#if !defined(MBEDTLS_PK_WRITE_C) || !defined(MBEDTLS_PEM_WRITE_C) || \
|
|
|
|
!defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_ENTROPY_C) || \
|
|
|
|
!defined(MBEDTLS_CTR_DRBG_C)
|
2015-02-12 12:37:29 +01:00
|
|
|
int main( void )
|
2015-02-11 15:06:19 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "MBEDTLS_PK_WRITE_C and/or MBEDTLS_FS_IO and/or "
|
2016-10-06 20:02:49 +02:00
|
|
|
"MBEDTLS_ENTROPY_C and/or MBEDTLS_CTR_DRBG_C and/or "
|
|
|
|
"MBEDTLS_PEM_WRITE_C"
|
2015-02-11 15:06:19 +01:00
|
|
|
"not defined.\n" );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
2018-12-06 18:43:31 +01:00
|
|
|
|
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
/*
|
|
|
|
* global options
|
|
|
|
*/
|
|
|
|
struct options
|
|
|
|
{
|
|
|
|
int type; /* the type of key to generate */
|
|
|
|
int rsa_keysize; /* length of key in bits */
|
|
|
|
int ec_curve; /* curve identifier for EC keys */
|
|
|
|
const char *filename; /* filename of the key file */
|
|
|
|
int format; /* the output format to use */
|
|
|
|
int use_dev_random; /* use /dev/random as entropy source */
|
|
|
|
} opt;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int write_private_key( mbedtls_pk_context *key, const char *output_file )
|
2013-09-23 12:05:44 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
FILE *f;
|
|
|
|
unsigned char output_buf[16000];
|
|
|
|
unsigned char *c = output_buf;
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
memset(output_buf, 0, 16000);
|
|
|
|
if( opt.format == FORMAT_PEM )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_pk_write_key_pem( key, output_buf, 16000 ) ) != 0 )
|
2013-09-23 12:05:44 +02:00
|
|
|
return( ret );
|
|
|
|
|
|
|
|
len = strlen( (char *) output_buf );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_pk_write_key_der( key, output_buf, 16000 ) ) < 0 )
|
2013-09-23 12:05:44 +02:00
|
|
|
return( ret );
|
|
|
|
|
|
|
|
len = ret;
|
2014-06-13 17:37:46 +02:00
|
|
|
c = output_buf + sizeof(output_buf) - len;
|
2013-09-23 12:05:44 +02:00
|
|
|
}
|
|
|
|
|
2014-07-10 12:03:09 +02:00
|
|
|
if( ( f = fopen( output_file, "wb" ) ) == NULL )
|
2013-09-23 12:05:44 +02:00
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
if( fwrite( c, 1, len, f ) != len )
|
2014-04-17 16:02:36 +02:00
|
|
|
{
|
|
|
|
fclose( f );
|
2013-09-23 12:05:44 +02:00
|
|
|
return( -1 );
|
2014-04-17 16:02:36 +02:00
|
|
|
}
|
2013-09-23 12:05:44 +02:00
|
|
|
|
2014-04-17 16:02:36 +02:00
|
|
|
fclose( f );
|
2013-09-23 12:05:44 +02:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
2018-04-29 20:51:56 +02:00
|
|
|
int ret = 1;
|
|
|
|
int exit_code = MBEDTLS_EXIT_FAILURE;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_context key;
|
2013-09-23 12:05:44 +02:00
|
|
|
char buf[1024];
|
|
|
|
int i;
|
|
|
|
char *p, *q;
|
2017-08-23 07:45:10 +02:00
|
|
|
mbedtls_mpi N, P, Q, D, E, DP, DQ, QP;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_context entropy;
|
|
|
|
mbedtls_ctr_drbg_context ctr_drbg;
|
2013-09-23 12:05:44 +02:00
|
|
|
const char *pers = "gen_key";
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
const mbedtls_ecp_curve_info *curve_info;
|
2013-11-30 15:32:47 +01:00
|
|
|
#endif
|
2013-09-23 12:05:44 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set to sane values
|
|
|
|
*/
|
2017-08-23 07:45:10 +02:00
|
|
|
|
|
|
|
mbedtls_mpi_init( &N ); mbedtls_mpi_init( &P ); mbedtls_mpi_init( &Q );
|
|
|
|
mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP );
|
|
|
|
mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_init( &key );
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_ctr_drbg_init( &ctr_drbg );
|
2013-09-23 12:05:44 +02:00
|
|
|
memset( buf, 0, sizeof( buf ) );
|
|
|
|
|
|
|
|
if( argc == 0 )
|
|
|
|
{
|
|
|
|
usage:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( USAGE );
|
|
|
|
#if defined(MBEDTLS_ECP_C)
|
2015-10-09 01:28:14 +02:00
|
|
|
mbedtls_printf( " available ec_curve values:\n" );
|
2015-04-08 12:49:31 +02:00
|
|
|
curve_info = mbedtls_ecp_curve_list();
|
|
|
|
mbedtls_printf( " %s (default)\n", curve_info->name );
|
2013-11-30 15:32:47 +01:00
|
|
|
while( ( ++curve_info )->name != NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " %s\n", curve_info->name );
|
2018-04-29 20:51:56 +02:00
|
|
|
#endif /* MBEDTLS_ECP_C */
|
2013-09-23 12:05:44 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
opt.type = DFL_TYPE;
|
|
|
|
opt.rsa_keysize = DFL_RSA_KEYSIZE;
|
2013-11-30 15:32:47 +01:00
|
|
|
opt.ec_curve = DFL_EC_CURVE;
|
2013-09-23 12:05:44 +02:00
|
|
|
opt.filename = DFL_FILENAME;
|
|
|
|
opt.format = DFL_FORMAT;
|
2014-04-09 15:25:13 +02:00
|
|
|
opt.use_dev_random = DFL_USE_DEV_RANDOM;
|
2013-09-23 12:05:44 +02:00
|
|
|
|
|
|
|
for( i = 1; i < argc; i++ )
|
|
|
|
{
|
|
|
|
p = argv[i];
|
|
|
|
if( ( q = strchr( p, '=' ) ) == NULL )
|
|
|
|
goto usage;
|
|
|
|
*q++ = '\0';
|
|
|
|
|
|
|
|
if( strcmp( p, "type" ) == 0 )
|
|
|
|
{
|
|
|
|
if( strcmp( q, "rsa" ) == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
opt.type = MBEDTLS_PK_RSA;
|
2014-02-06 14:33:52 +01:00
|
|
|
else if( strcmp( q, "ec" ) == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
opt.type = MBEDTLS_PK_ECKEY;
|
2013-09-23 12:05:44 +02:00
|
|
|
else
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
else if( strcmp( p, "format" ) == 0 )
|
|
|
|
{
|
|
|
|
if( strcmp( q, "pem" ) == 0 )
|
|
|
|
opt.format = FORMAT_PEM;
|
|
|
|
else if( strcmp( q, "der" ) == 0 )
|
|
|
|
opt.format = FORMAT_DER;
|
|
|
|
else
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
else if( strcmp( p, "rsa_keysize" ) == 0 )
|
|
|
|
{
|
|
|
|
opt.rsa_keysize = atoi( q );
|
2014-07-21 17:10:16 +02:00
|
|
|
if( opt.rsa_keysize < 1024 ||
|
2015-04-08 12:49:31 +02:00
|
|
|
opt.rsa_keysize > MBEDTLS_MPI_MAX_BITS )
|
2013-09-23 12:05:44 +02:00
|
|
|
goto usage;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
2013-11-30 15:32:47 +01:00
|
|
|
else if( strcmp( p, "ec_curve" ) == 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( curve_info = mbedtls_ecp_curve_info_from_name( q ) ) == NULL )
|
2013-11-30 15:32:47 +01:00
|
|
|
goto usage;
|
|
|
|
opt.ec_curve = curve_info->grp_id;
|
|
|
|
}
|
2014-08-18 12:00:28 +02:00
|
|
|
#endif
|
2013-09-23 12:05:44 +02:00
|
|
|
else if( strcmp( p, "filename" ) == 0 )
|
|
|
|
opt.filename = q;
|
2014-04-09 15:25:13 +02:00
|
|
|
else if( strcmp( p, "use_dev_random" ) == 0 )
|
|
|
|
{
|
|
|
|
opt.use_dev_random = atoi( q );
|
|
|
|
if( opt.use_dev_random < 0 || opt.use_dev_random > 1 )
|
|
|
|
goto usage;
|
|
|
|
}
|
2013-09-23 12:05:44 +02:00
|
|
|
else
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Seeding the random number generator..." );
|
2013-09-23 12:05:44 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_init( &entropy );
|
|
|
|
#if !defined(_WIN32) && defined(MBEDTLS_FS_IO)
|
2014-04-09 15:25:13 +02:00
|
|
|
if( opt.use_dev_random )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_entropy_add_source( &entropy, dev_random_entropy_poll,
|
2015-06-19 10:26:32 +02:00
|
|
|
NULL, DEV_RANDOM_THRESHOLD,
|
|
|
|
MBEDTLS_ENTROPY_SOURCE_STRONG ) ) != 0 )
|
2014-04-09 15:25:13 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_entropy_add_source returned -0x%04x\n", -ret );
|
2014-04-09 15:25:13 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("\n Using /dev/random, so can take a long time! " );
|
2014-04-09 15:25:13 +02:00
|
|
|
fflush( stdout );
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* !_WIN32 && MBEDTLS_FS_IO */
|
2014-04-09 15:25:13 +02:00
|
|
|
|
2015-04-28 22:52:30 +02:00
|
|
|
if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy,
|
2013-09-23 12:05:44 +02:00
|
|
|
(const unsigned char *) pers,
|
|
|
|
strlen( pers ) ) ) != 0 )
|
|
|
|
{
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned -0x%04x\n", -ret );
|
2013-09-23 12:05:44 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 1.1. Generate the key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Generating the private key ..." );
|
2013-09-23 12:05:44 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2018-11-05 17:54:40 +01:00
|
|
|
if( ( ret = mbedtls_pk_setup( &key,
|
|
|
|
mbedtls_pk_info_from_type( (mbedtls_pk_type_t) opt.type ) ) ) != 0 )
|
2013-11-30 14:36:54 +01:00
|
|
|
{
|
2015-05-14 19:41:36 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_pk_setup returned -0x%04x", -ret );
|
2013-11-30 14:36:54 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
|
|
|
|
if( opt.type == MBEDTLS_PK_RSA )
|
2013-09-23 12:05:44 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_rsa_gen_key( mbedtls_pk_rsa( key ), mbedtls_ctr_drbg_random, &ctr_drbg,
|
2017-08-23 07:45:10 +02:00
|
|
|
opt.rsa_keysize, 65537 );
|
2013-09-23 12:05:44 +02:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_rsa_gen_key returned -0x%04x", -ret );
|
2013-09-23 12:05:44 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_RSA_C */
|
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
if( opt.type == MBEDTLS_PK_ECKEY )
|
2013-11-30 14:36:54 +01:00
|
|
|
{
|
2018-11-05 17:54:40 +01:00
|
|
|
ret = mbedtls_ecp_gen_key( (mbedtls_ecp_group_id) opt.ec_curve,
|
|
|
|
mbedtls_pk_ec( key ),
|
2017-08-23 07:45:10 +02:00
|
|
|
mbedtls_ctr_drbg_random, &ctr_drbg );
|
2013-11-30 14:36:54 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2017-11-05 20:10:51 +01:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ecp_gen_key returned -0x%04x", -ret );
|
2013-11-30 14:36:54 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ECP_C */
|
2013-09-23 12:05:44 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! key type not supported\n" );
|
2013-09-23 12:05:44 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 1.2 Print the key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n . Key information:\n" );
|
2013-09-23 12:05:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
|
|
|
if( mbedtls_pk_get_type( &key ) == MBEDTLS_PK_RSA )
|
2013-09-23 12:05:44 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_context *rsa = mbedtls_pk_rsa( key );
|
2017-08-23 07:45:10 +02:00
|
|
|
|
|
|
|
if( ( ret = mbedtls_rsa_export ( rsa, &N, &P, &Q, &D, &E ) ) != 0 ||
|
|
|
|
( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_printf( " failed\n ! could not export RSA parameters\n\n" );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
mbedtls_mpi_write_file( "N: ", &N, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "E: ", &E, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "D: ", &D, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "P: ", &P, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "Q: ", &Q, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "DP: ", &DP, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "DQ: ", &DQ, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "QP: ", &QP, 16, NULL );
|
2013-09-23 12:05:44 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
if( mbedtls_pk_get_type( &key ) == MBEDTLS_PK_ECKEY )
|
2013-09-23 12:05:44 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_keypair *ecp = mbedtls_pk_ec( key );
|
|
|
|
mbedtls_printf( "curve: %s\n",
|
|
|
|
mbedtls_ecp_curve_info_from_grp_id( ecp->grp.id )->name );
|
|
|
|
mbedtls_mpi_write_file( "X_Q: ", &ecp->Q.X, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "Y_Q: ", &ecp->Q.Y, 16, NULL );
|
|
|
|
mbedtls_mpi_write_file( "D: ", &ecp->d , 16, NULL );
|
2013-09-23 12:05:44 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf(" ! key type not supported\n");
|
2013-09-23 12:05:44 +02:00
|
|
|
|
2014-07-21 17:10:16 +02:00
|
|
|
/*
|
|
|
|
* 1.3 Export key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Writing key to file..." );
|
2014-07-21 17:10:16 +02:00
|
|
|
|
|
|
|
if( ( ret = write_private_key( &key, opt.filename ) ) != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n" );
|
2014-07-21 17:10:16 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2013-09-23 12:05:44 +02:00
|
|
|
|
2018-04-29 20:51:56 +02:00
|
|
|
exit_code = MBEDTLS_EXIT_SUCCESS;
|
|
|
|
|
2013-09-23 12:05:44 +02:00
|
|
|
exit:
|
|
|
|
|
2018-04-29 20:51:56 +02:00
|
|
|
if( exit_code != MBEDTLS_EXIT_SUCCESS )
|
2013-09-23 12:05:44 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#ifdef MBEDTLS_ERROR_C
|
|
|
|
mbedtls_strerror( ret, buf, sizeof( buf ) );
|
|
|
|
mbedtls_printf( " - %s\n", buf );
|
2013-09-23 12:05:44 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("\n");
|
2013-09-23 12:05:44 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-08-23 07:45:10 +02:00
|
|
|
mbedtls_mpi_free( &N ); mbedtls_mpi_free( &P ); mbedtls_mpi_free( &Q );
|
|
|
|
mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP );
|
|
|
|
mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_free( &key );
|
|
|
|
mbedtls_ctr_drbg_free( &ctr_drbg );
|
|
|
|
mbedtls_entropy_free( &entropy );
|
2013-09-23 12:05:44 +02:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " + Press Enter to exit this program.\n" );
|
2013-09-23 12:05:44 +02:00
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
|
2018-04-29 20:51:56 +02:00
|
|
|
return( exit_code );
|
2013-09-23 12:05:44 +02:00
|
|
|
}
|
2016-10-06 20:02:49 +02:00
|
|
|
#endif /* MBEDTLS_PK_WRITE_C && MBEDTLS_PEM_WRITE_C && MBEDTLS_FS_IO &&
|
|
|
|
* MBEDTLS_ENTROPY_C && MBEDTLS_CTR_DRBG_C */
|