blob: 0cc9d0664404424148d63ec21694920433125230 [file] [log] [blame]
Paul Bakker8adf13b2013-08-25 14:50:09 +02001/*
2 * Convert PEM to DER
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 Bakker8adf13b2013-08-25 14:50:09 +020018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker8adf13b2013-08-25 14:50:09 +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 Bakker8adf13b2013-08-25 14:50:09 +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 Garcia78dabe02018-04-29 22:08:41 +010032#include <stdlib.h>
33#define mbedtls_free free
34#define mbedtls_calloc calloc
35#define mbedtls_printf printf
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010036#define mbedtls_exit exit
Andres Amaya Garcia7d429652018-04-30 22:42:33 +010037#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
Andres Amaya Garcia78dabe02018-04-29 22:08:41 +010038#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
39#endif /* MBEDTLS_PLATFORM_C */
Rich Evansf90016a2015-01-19 14:26:37 +000040
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020041#if defined(MBEDTLS_BASE64_C) && defined(MBEDTLS_FS_IO)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000042#include "mbedtls/error.h"
43#include "mbedtls/base64.h"
Paul Bakker8adf13b2013-08-25 14:50:09 +020044
Rich Evans18b78c72015-02-11 14:06:19 +000045#include <stdio.h>
46#include <stdlib.h>
47#include <string.h>
48#endif
49
Paul Bakker8adf13b2013-08-25 14:50:09 +020050#define DFL_FILENAME "file.pem"
51#define DFL_OUTPUT_FILENAME "file.der"
52
Rich Evans18b78c72015-02-11 14:06:19 +000053#define USAGE \
54 "\n usage: pem2der param=<>...\n" \
55 "\n acceptable parameters:\n" \
56 " filename=%%s default: file.pem\n" \
57 " output_file=%%s default: file.der\n" \
58 "\n"
59
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020060#if !defined(MBEDTLS_BASE64_C) || !defined(MBEDTLS_FS_IO)
Rich Evans85b05ec2015-02-12 11:37:29 +000061int main( void )
Manuel Pégourié-Gonnard7831b0c2013-09-20 12:29:56 +020062{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020063 mbedtls_printf("MBEDTLS_BASE64_C and/or MBEDTLS_FS_IO not defined.\n");
Manuel Pégourié-Gonnard7831b0c2013-09-20 12:29:56 +020064 return( 0 );
65}
66#else
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010067
68#if defined(MBEDTLS_CHECK_PARAMS)
69#define mbedtls_exit exit
70void mbedtls_param_failed( const char *failure_condition,
71 const char *file,
72 int line )
73{
74 mbedtls_printf( "%s:%i: Input param failed - %s\n",
75 file, line, failure_condition );
76 mbedtls_exit( MBEDTLS_EXIT_FAILURE );
77}
78#endif
79
Paul Bakker8adf13b2013-08-25 14:50:09 +020080/*
81 * global options
82 */
83struct options
84{
Paul Bakker8fc30b12013-11-25 13:29:43 +010085 const char *filename; /* filename of the input file */
86 const char *output_file; /* where to store the output */
Paul Bakker8adf13b2013-08-25 14:50:09 +020087} opt;
88
89int convert_pem_to_der( const unsigned char *input, size_t ilen,
90 unsigned char *output, size_t *olen )
91{
92 int ret;
93 const unsigned char *s1, *s2, *end = input + ilen;
94 size_t len = 0;
95
Paul Bakker8fc30b12013-11-25 13:29:43 +010096 s1 = (unsigned char *) strstr( (const char *) input, "-----BEGIN" );
Paul Bakker8adf13b2013-08-25 14:50:09 +020097 if( s1 == NULL )
98 return( -1 );
99
Paul Bakker8fc30b12013-11-25 13:29:43 +0100100 s2 = (unsigned char *) strstr( (const char *) input, "-----END" );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200101 if( s2 == NULL )
102 return( -1 );
103
104 s1 += 10;
105 while( s1 < end && *s1 != '-' )
106 s1++;
107 while( s1 < end && *s1 == '-' )
108 s1++;
109 if( *s1 == '\r' ) s1++;
110 if( *s1 == '\n' ) s1++;
111
112 if( s2 <= s1 || s2 > end )
113 return( -1 );
114
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +0100115 ret = mbedtls_base64_decode( NULL, 0, &len, (const unsigned char *) s1, s2 - s1 );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200116 if( ret == MBEDTLS_ERR_BASE64_INVALID_CHARACTER )
Paul Bakker8adf13b2013-08-25 14:50:09 +0200117 return( ret );
118
119 if( len > *olen )
120 return( -1 );
121
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +0100122 if( ( ret = mbedtls_base64_decode( output, len, &len, (const unsigned char *) s1,
Paul Bakker8adf13b2013-08-25 14:50:09 +0200123 s2 - s1 ) ) != 0 )
124 {
125 return( ret );
126 }
127
128 *olen = len;
129
130 return( 0 );
131}
132
133/*
134 * Load all data from a file into a given buffer.
135 */
136static int load_file( const char *path, unsigned char **buf, size_t *n )
137{
138 FILE *f;
139 long size;
140
141 if( ( f = fopen( path, "rb" ) ) == NULL )
142 return( -1 );
143
144 fseek( f, 0, SEEK_END );
145 if( ( size = ftell( f ) ) == -1 )
146 {
147 fclose( f );
148 return( -1 );
149 }
150 fseek( f, 0, SEEK_SET );
151
152 *n = (size_t) size;
153
154 if( *n + 1 == 0 ||
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200155 ( *buf = mbedtls_calloc( 1, *n + 1 ) ) == NULL )
Paul Bakker8adf13b2013-08-25 14:50:09 +0200156 {
157 fclose( f );
158 return( -1 );
159 }
160
161 if( fread( *buf, 1, *n, f ) != *n )
162 {
163 fclose( f );
164 free( *buf );
Alfred Klomp1d42b3e2014-07-14 22:09:21 +0200165 *buf = NULL;
Paul Bakker8adf13b2013-08-25 14:50:09 +0200166 return( -1 );
167 }
168
169 fclose( f );
170
171 (*buf)[*n] = '\0';
172
173 return( 0 );
174}
175
176/*
177 * Write buffer to a file
178 */
179static int write_file( const char *path, unsigned char *buf, size_t n )
180{
181 FILE *f;
182
183 if( ( f = fopen( path, "wb" ) ) == NULL )
184 return( -1 );
185
186 if( fwrite( buf, 1, n, f ) != n )
187 {
188 fclose( f );
189 return( -1 );
190 }
191
192 fclose( f );
193 return( 0 );
194}
195
Paul Bakker8adf13b2013-08-25 14:50:09 +0200196int main( int argc, char *argv[] )
197{
Andres Amaya Garcia78dabe02018-04-29 22:08:41 +0100198 int ret = 1;
199 int exit_code = MBEDTLS_EXIT_FAILURE;
Paul Bakker8adf13b2013-08-25 14:50:09 +0200200 unsigned char *pem_buffer = NULL;
201 unsigned char der_buffer[4096];
202 char buf[1024];
203 size_t pem_size, der_size = sizeof(der_buffer);
Paul Bakkerc97f9f62013-11-30 15:13:02 +0100204 int i;
Paul Bakker8adf13b2013-08-25 14:50:09 +0200205 char *p, *q;
206
207 /*
208 * Set to sane values
209 */
210 memset( buf, 0, sizeof(buf) );
211 memset( der_buffer, 0, sizeof(der_buffer) );
212
213 if( argc == 0 )
214 {
215 usage:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200216 mbedtls_printf( USAGE );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200217 goto exit;
218 }
219
220 opt.filename = DFL_FILENAME;
221 opt.output_file = DFL_OUTPUT_FILENAME;
222
223 for( i = 1; i < argc; i++ )
224 {
225
226 p = argv[i];
227 if( ( q = strchr( p, '=' ) ) == NULL )
228 goto usage;
229 *q++ = '\0';
230
Paul Bakker8adf13b2013-08-25 14:50:09 +0200231 if( strcmp( p, "filename" ) == 0 )
232 opt.filename = q;
233 else if( strcmp( p, "output_file" ) == 0 )
234 opt.output_file = q;
235 else
236 goto usage;
237 }
238
239 /*
240 * 1.1. Load the PEM file
241 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200242 mbedtls_printf( "\n . Loading the PEM file ..." );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200243 fflush( stdout );
244
245 ret = load_file( opt.filename, &pem_buffer, &pem_size );
246
247 if( ret != 0 )
248 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200249#ifdef MBEDTLS_ERROR_C
250 mbedtls_strerror( ret, buf, 1024 );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200251#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200252 mbedtls_printf( " failed\n ! load_file returned %d - %s\n\n", ret, buf );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200253 goto exit;
254 }
255
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200256 mbedtls_printf( " ok\n" );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200257
258 /*
259 * 1.2. Convert from PEM to DER
260 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200261 mbedtls_printf( " . Converting from PEM to DER ..." );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200262 fflush( stdout );
263
264 if( ( ret = convert_pem_to_der( pem_buffer, pem_size, der_buffer, &der_size ) ) != 0 )
265 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200266#ifdef MBEDTLS_ERROR_C
267 mbedtls_strerror( ret, buf, 1024 );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200268#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200269 mbedtls_printf( " failed\n ! convert_pem_to_der %d - %s\n\n", ret, buf );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200270 goto exit;
271 }
272
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200273 mbedtls_printf( " ok\n" );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200274
275 /*
276 * 1.3. Write the DER file
277 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200278 mbedtls_printf( " . Writing the DER file ..." );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200279 fflush( stdout );
280
281 ret = write_file( opt.output_file, der_buffer, der_size );
282
283 if( ret != 0 )
284 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200285#ifdef MBEDTLS_ERROR_C
286 mbedtls_strerror( ret, buf, 1024 );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200287#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200288 mbedtls_printf( " failed\n ! write_file returned %d - %s\n\n", ret, buf );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200289 goto exit;
290 }
291
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200292 mbedtls_printf( " ok\n" );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200293
Andres Amaya Garcia78dabe02018-04-29 22:08:41 +0100294 exit_code = MBEDTLS_EXIT_SUCCESS;
295
Paul Bakker8adf13b2013-08-25 14:50:09 +0200296exit:
297 free( pem_buffer );
298
299#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200300 mbedtls_printf( " + Press Enter to exit this program.\n" );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200301 fflush( stdout ); getchar();
302#endif
303
Andres Amaya Garcia78dabe02018-04-29 22:08:41 +0100304 return( exit_code );
Paul Bakker8adf13b2013-08-25 14:50:09 +0200305}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200306#endif /* MBEDTLS_BASE64_C && MBEDTLS_FS_IO */