blob: 17f6d65919e2d49af3f5e6ddb181fc7cc65445c4 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Example RSA key generation program
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
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 Bakker5121ce52009-01-03 21:22:43 +000018 */
19
Bence Szépkútic662b362021-05-27 11:25:03 +020020#include "mbedtls/build_info.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000021
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000022#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000023
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#if defined(MBEDTLS_BIGNUM_C) && defined(MBEDTLS_ENTROPY_C) && \
25 defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME) && \
26 defined(MBEDTLS_FS_IO) && defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000027#include "mbedtls/entropy.h"
28#include "mbedtls/ctr_drbg.h"
29#include "mbedtls/bignum.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000030#include "mbedtls/rsa.h"
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +000031
Rich Evans18b78c72015-02-11 14:06:19 +000032#include <stdio.h>
33#include <string.h>
34#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000035
Manuel Pégourié-Gonnardd224ff12015-08-27 21:42:49 +020036#define KEY_SIZE 2048
Paul Bakker5121ce52009-01-03 21:22:43 +000037#define EXPONENT 65537
38
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020039#if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_ENTROPY_C) || \
40 !defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_GENPRIME) || \
41 !defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_CTR_DRBG_C)
Gilles Peskine449bd832023-01-11 14:50:10 +010042int main(void)
Paul Bakker5690efc2011-05-26 13:16:06 +000043{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020044 mbedtls_printf("MBEDTLS_BIGNUM_C and/or MBEDTLS_ENTROPY_C and/or "
Gilles Peskine449bd832023-01-11 14:50:10 +010045 "MBEDTLS_RSA_C and/or MBEDTLS_GENPRIME and/or "
46 "MBEDTLS_FS_IO and/or MBEDTLS_CTR_DRBG_C not defined.\n");
47 mbedtls_exit(0);
Paul Bakker5690efc2011-05-26 13:16:06 +000048}
49#else
Simon Butcher63cb97e2018-12-06 17:43:31 +000050
Simon Butcher63cb97e2018-12-06 17:43:31 +000051
Gilles Peskine449bd832023-01-11 14:50:10 +010052int main(void)
Paul Bakker5121ce52009-01-03 21:22:43 +000053{
Andres Amaya Garcia70e1ffd2018-04-29 20:12:43 +010054 int ret = 1;
55 int exit_code = MBEDTLS_EXIT_FAILURE;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020056 mbedtls_rsa_context rsa;
57 mbedtls_entropy_context entropy;
58 mbedtls_ctr_drbg_context ctr_drbg;
Hanno Beckerf073de02017-08-23 07:42:28 +010059 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP;
Paul Bakker5121ce52009-01-03 21:22:43 +000060 FILE *fpub = NULL;
61 FILE *fpriv = NULL;
Paul Bakkeref3f8c72013-06-24 13:01:08 +020062 const char *pers = "rsa_genkey";
Paul Bakker5121ce52009-01-03 21:22:43 +000063
Gilles Peskine449bd832023-01-11 14:50:10 +010064 mbedtls_ctr_drbg_init(&ctr_drbg);
65 mbedtls_rsa_init(&rsa);
66 mbedtls_mpi_init(&N); mbedtls_mpi_init(&P); mbedtls_mpi_init(&Q);
67 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP);
68 mbedtls_mpi_init(&DQ); mbedtls_mpi_init(&QP);
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +020069
Gilles Peskine449bd832023-01-11 14:50:10 +010070 mbedtls_printf("\n . Seeding the random number generator...");
71 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +000072
Gilles Peskine449bd832023-01-11 14:50:10 +010073 mbedtls_entropy_init(&entropy);
74 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy,
75 (const unsigned char *) pers,
76 strlen(pers))) != 0) {
77 mbedtls_printf(" failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret);
Paul Bakker508ad5a2011-12-04 17:09:26 +000078 goto exit;
79 }
Paul Bakker5121ce52009-01-03 21:22:43 +000080
Gilles Peskine449bd832023-01-11 14:50:10 +010081 mbedtls_printf(" ok\n . Generating the RSA key [ %d-bit ]...", KEY_SIZE);
82 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +000083
Gilles Peskine449bd832023-01-11 14:50:10 +010084 if ((ret = mbedtls_rsa_gen_key(&rsa, mbedtls_ctr_drbg_random, &ctr_drbg, KEY_SIZE,
85 EXPONENT)) != 0) {
86 mbedtls_printf(" failed\n ! mbedtls_rsa_gen_key returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +000087 goto exit;
88 }
89
Gilles Peskine449bd832023-01-11 14:50:10 +010090 mbedtls_printf(" ok\n . Exporting the public key in rsa_pub.txt....");
91 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +000092
Gilles Peskine449bd832023-01-11 14:50:10 +010093 if ((ret = mbedtls_rsa_export(&rsa, &N, &P, &Q, &D, &E)) != 0 ||
94 (ret = mbedtls_rsa_export_crt(&rsa, &DP, &DQ, &QP)) != 0) {
95 mbedtls_printf(" failed\n ! could not export RSA parameters\n\n");
Hanno Beckerf073de02017-08-23 07:42:28 +010096 goto exit;
97 }
98
Gilles Peskine449bd832023-01-11 14:50:10 +010099 if ((fpub = fopen("rsa_pub.txt", "wb+")) == NULL) {
100 mbedtls_printf(" failed\n ! could not open rsa_pub.txt for writing\n\n");
Paul Bakker5121ce52009-01-03 21:22:43 +0000101 goto exit;
102 }
103
Gilles Peskine449bd832023-01-11 14:50:10 +0100104 if ((ret = mbedtls_mpi_write_file("N = ", &N, 16, fpub)) != 0 ||
105 (ret = mbedtls_mpi_write_file("E = ", &E, 16, fpub)) != 0) {
106 mbedtls_printf(" failed\n ! mbedtls_mpi_write_file returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000107 goto exit;
108 }
109
Gilles Peskine449bd832023-01-11 14:50:10 +0100110 mbedtls_printf(" ok\n . Exporting the private key in rsa_priv.txt...");
111 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +0000112
Gilles Peskine449bd832023-01-11 14:50:10 +0100113 if ((fpriv = fopen("rsa_priv.txt", "wb+")) == NULL) {
114 mbedtls_printf(" failed\n ! could not open rsa_priv.txt for writing\n");
Paul Bakker5121ce52009-01-03 21:22:43 +0000115 goto exit;
116 }
117
Gilles Peskine449bd832023-01-11 14:50:10 +0100118 if ((ret = mbedtls_mpi_write_file("N = ", &N, 16, fpriv)) != 0 ||
119 (ret = mbedtls_mpi_write_file("E = ", &E, 16, fpriv)) != 0 ||
120 (ret = mbedtls_mpi_write_file("D = ", &D, 16, fpriv)) != 0 ||
121 (ret = mbedtls_mpi_write_file("P = ", &P, 16, fpriv)) != 0 ||
122 (ret = mbedtls_mpi_write_file("Q = ", &Q, 16, fpriv)) != 0 ||
123 (ret = mbedtls_mpi_write_file("DP = ", &DP, 16, fpriv)) != 0 ||
124 (ret = mbedtls_mpi_write_file("DQ = ", &DQ, 16, fpriv)) != 0 ||
125 (ret = mbedtls_mpi_write_file("QP = ", &QP, 16, fpriv)) != 0) {
126 mbedtls_printf(" failed\n ! mbedtls_mpi_write_file returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000127 goto exit;
128 }
Gilles Peskine449bd832023-01-11 14:50:10 +0100129 mbedtls_printf(" ok\n\n");
Paul Bakker5121ce52009-01-03 21:22:43 +0000130
Andres Amaya Garcia70e1ffd2018-04-29 20:12:43 +0100131 exit_code = MBEDTLS_EXIT_SUCCESS;
132
Paul Bakker5121ce52009-01-03 21:22:43 +0000133exit:
134
Gilles Peskine449bd832023-01-11 14:50:10 +0100135 if (fpub != NULL) {
136 fclose(fpub);
137 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000138
Gilles Peskine449bd832023-01-11 14:50:10 +0100139 if (fpriv != NULL) {
140 fclose(fpriv);
141 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000142
Gilles Peskine449bd832023-01-11 14:50:10 +0100143 mbedtls_mpi_free(&N); mbedtls_mpi_free(&P); mbedtls_mpi_free(&Q);
144 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP);
145 mbedtls_mpi_free(&DQ); mbedtls_mpi_free(&QP);
146 mbedtls_rsa_free(&rsa);
147 mbedtls_ctr_drbg_free(&ctr_drbg);
148 mbedtls_entropy_free(&entropy);
Paul Bakker5121ce52009-01-03 21:22:43 +0000149
Gilles Peskine449bd832023-01-11 14:50:10 +0100150 mbedtls_exit(exit_code);
Paul Bakker5121ce52009-01-03 21:22:43 +0000151}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200152#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_ENTROPY_C && MBEDTLS_RSA_C &&
153 MBEDTLS_GENPRIME && MBEDTLS_FS_IO && MBEDTLS_CTR_DRBG_C */