blob: d5f1cf50192e5f81f5b8108a299b034f075bd6ad [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Example RSA key generation program
3 *
Manuel Pégourié-Gonnarda658a402015-01-23 09:45:19 +00004 * Copyright (C) 2006-2011, ARM Limited, All Rights Reserved
Paul Bakkerb96f1542010-07-18 20:36:00 +00005 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +00006 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
Paul Bakker5121ce52009-01-03 21:22:43 +00008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020023#if !defined(POLARSSL_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000024#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020025#else
26#include POLARSSL_CONFIG_FILE
27#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000028
Rich Evansf90016a2015-01-19 14:26:37 +000029#if defined(POLARSSL_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000030#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000031#else
Rich Evans18b78c72015-02-11 14:06:19 +000032#include <stdio.h>
Rich Evansf90016a2015-01-19 14:26:37 +000033#define polarssl_printf printf
Rich Evansf90016a2015-01-19 14:26:37 +000034#endif
35
Manuel Pégourié-Gonnard013bffe2015-02-13 14:09:44 +000036#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) && \
37 defined(POLARSSL_RSA_C) && defined(POLARSSL_GENPRIME) && \
Rich Evans18b78c72015-02-11 14:06:19 +000038 defined(POLARSSL_FS_IO) && defined(POLARSSL_CTR_DRBG_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000039#include "mbedtls/entropy.h"
40#include "mbedtls/ctr_drbg.h"
41#include "mbedtls/bignum.h"
42#include "mbedtls/x509.h"
43#include "mbedtls/rsa.h"
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +000044
Rich Evans18b78c72015-02-11 14:06:19 +000045#include <stdio.h>
46#include <string.h>
47#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000048
49#define KEY_SIZE 1024
50#define EXPONENT 65537
51
Paul Bakker508ad5a2011-12-04 17:09:26 +000052#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \
Paul Bakker5690efc2011-05-26 13:16:06 +000053 !defined(POLARSSL_RSA_C) || !defined(POLARSSL_GENPRIME) || \
Paul Bakker508ad5a2011-12-04 17:09:26 +000054 !defined(POLARSSL_FS_IO) || !defined(POLARSSL_CTR_DRBG_C)
Rich Evans85b05ec2015-02-12 11:37:29 +000055int main( void )
Paul Bakker5690efc2011-05-26 13:16:06 +000056{
Rich Evansf90016a2015-01-19 14:26:37 +000057 polarssl_printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or "
Paul Bakker5690efc2011-05-26 13:16:06 +000058 "POLARSSL_RSA_C and/or POLARSSL_GENPRIME and/or "
Paul Bakker508ad5a2011-12-04 17:09:26 +000059 "POLARSSL_FS_IO and/or POLARSSL_CTR_DRBG_C not defined.\n");
Paul Bakker5690efc2011-05-26 13:16:06 +000060 return( 0 );
61}
62#else
Rich Evans85b05ec2015-02-12 11:37:29 +000063int main( void )
Paul Bakker5121ce52009-01-03 21:22:43 +000064{
65 int ret;
66 rsa_context rsa;
Paul Bakker508ad5a2011-12-04 17:09:26 +000067 entropy_context entropy;
68 ctr_drbg_context ctr_drbg;
Paul Bakker5121ce52009-01-03 21:22:43 +000069 FILE *fpub = NULL;
70 FILE *fpriv = NULL;
Paul Bakkeref3f8c72013-06-24 13:01:08 +020071 const char *pers = "rsa_genkey";
Paul Bakker5121ce52009-01-03 21:22:43 +000072
Rich Evansf90016a2015-01-19 14:26:37 +000073 polarssl_printf( "\n . Seeding the random number generator..." );
Paul Bakker5121ce52009-01-03 21:22:43 +000074 fflush( stdout );
75
Paul Bakker508ad5a2011-12-04 17:09:26 +000076 entropy_init( &entropy );
77 if( ( ret = ctr_drbg_init( &ctr_drbg, entropy_func, &entropy,
Paul Bakkeref3f8c72013-06-24 13:01:08 +020078 (const unsigned char *) pers,
79 strlen( pers ) ) ) != 0 )
Paul Bakker508ad5a2011-12-04 17:09:26 +000080 {
Rich Evansf90016a2015-01-19 14:26:37 +000081 polarssl_printf( " failed\n ! ctr_drbg_init returned %d\n", ret );
Paul Bakker508ad5a2011-12-04 17:09:26 +000082 goto exit;
83 }
Paul Bakker5121ce52009-01-03 21:22:43 +000084
Rich Evansf90016a2015-01-19 14:26:37 +000085 polarssl_printf( " ok\n . Generating the RSA key [ %d-bit ]...", KEY_SIZE );
Paul Bakker5121ce52009-01-03 21:22:43 +000086 fflush( stdout );
87
Paul Bakkera802e1a2010-08-16 11:56:45 +000088 rsa_init( &rsa, RSA_PKCS_V15, 0 );
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +000089
Paul Bakker508ad5a2011-12-04 17:09:26 +000090 if( ( ret = rsa_gen_key( &rsa, ctr_drbg_random, &ctr_drbg, KEY_SIZE,
91 EXPONENT ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +000092 {
Rich Evansf90016a2015-01-19 14:26:37 +000093 polarssl_printf( " failed\n ! rsa_gen_key returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +000094 goto exit;
95 }
96
Rich Evansf90016a2015-01-19 14:26:37 +000097 polarssl_printf( " ok\n . Exporting the public key in rsa_pub.txt...." );
Paul Bakker5121ce52009-01-03 21:22:43 +000098 fflush( stdout );
99
100 if( ( fpub = fopen( "rsa_pub.txt", "wb+" ) ) == NULL )
101 {
Rich Evansf90016a2015-01-19 14:26:37 +0000102 polarssl_printf( " failed\n ! could not open rsa_pub.txt for writing\n\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000103 ret = 1;
104 goto exit;
105 }
106
107 if( ( ret = mpi_write_file( "N = ", &rsa.N, 16, fpub ) ) != 0 ||
108 ( ret = mpi_write_file( "E = ", &rsa.E, 16, fpub ) ) != 0 )
109 {
Rich Evansf90016a2015-01-19 14:26:37 +0000110 polarssl_printf( " failed\n ! mpi_write_file returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000111 goto exit;
112 }
113
Rich Evansf90016a2015-01-19 14:26:37 +0000114 polarssl_printf( " ok\n . Exporting the private key in rsa_priv.txt..." );
Paul Bakker5121ce52009-01-03 21:22:43 +0000115 fflush( stdout );
116
117 if( ( fpriv = fopen( "rsa_priv.txt", "wb+" ) ) == NULL )
118 {
Rich Evansf90016a2015-01-19 14:26:37 +0000119 polarssl_printf( " failed\n ! could not open rsa_priv.txt for writing\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000120 ret = 1;
121 goto exit;
122 }
123
124 if( ( ret = mpi_write_file( "N = " , &rsa.N , 16, fpriv ) ) != 0 ||
125 ( ret = mpi_write_file( "E = " , &rsa.E , 16, fpriv ) ) != 0 ||
126 ( ret = mpi_write_file( "D = " , &rsa.D , 16, fpriv ) ) != 0 ||
127 ( ret = mpi_write_file( "P = " , &rsa.P , 16, fpriv ) ) != 0 ||
128 ( ret = mpi_write_file( "Q = " , &rsa.Q , 16, fpriv ) ) != 0 ||
129 ( ret = mpi_write_file( "DP = ", &rsa.DP, 16, fpriv ) ) != 0 ||
130 ( ret = mpi_write_file( "DQ = ", &rsa.DQ, 16, fpriv ) ) != 0 ||
131 ( ret = mpi_write_file( "QP = ", &rsa.QP, 16, fpriv ) ) != 0 )
132 {
Rich Evansf90016a2015-01-19 14:26:37 +0000133 polarssl_printf( " failed\n ! mpi_write_file returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000134 goto exit;
135 }
136/*
Rich Evansf90016a2015-01-19 14:26:37 +0000137 polarssl_printf( " ok\n . Generating the certificate..." );
Paul Bakker5121ce52009-01-03 21:22:43 +0000138
139 x509write_init_raw( &cert );
140 x509write_add_pubkey( &cert, &rsa );
141 x509write_add_subject( &cert, "CN='localhost'" );
142 x509write_add_validity( &cert, "2007-09-06 17:00:32",
143 "2010-09-06 17:00:32" );
144 x509write_create_selfsign( &cert, &rsa );
145 x509write_crtfile( &cert, "cert.der", X509_OUTPUT_DER );
146 x509write_crtfile( &cert, "cert.pem", X509_OUTPUT_PEM );
147 x509write_free_raw( &cert );
148*/
Rich Evansf90016a2015-01-19 14:26:37 +0000149 polarssl_printf( " ok\n\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000150
151exit:
152
153 if( fpub != NULL )
154 fclose( fpub );
155
156 if( fpriv != NULL )
157 fclose( fpriv );
158
159 rsa_free( &rsa );
Paul Bakkera317a982014-06-18 16:44:11 +0200160 ctr_drbg_free( &ctr_drbg );
Paul Bakker1ffefac2013-09-28 15:23:03 +0200161 entropy_free( &entropy );
Paul Bakker5121ce52009-01-03 21:22:43 +0000162
Paul Bakkercce9d772011-11-18 14:26:47 +0000163#if defined(_WIN32)
Rich Evansf90016a2015-01-19 14:26:37 +0000164 polarssl_printf( " Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000165 fflush( stdout ); getchar();
166#endif
167
168 return( ret );
169}
Paul Bakker508ad5a2011-12-04 17:09:26 +0000170#endif /* POLARSSL_BIGNUM_C && POLARSSL_ENTROPY_C && POLARSSL_RSA_C &&
171 POLARSSL_GENPRIME && POLARSSL_FS_IO && POLARSSL_CTR_DRBG_C */