blob: bc95eb9be5c4aaa6dbc23c56684a5999bfd07bbd [file] [log] [blame]
Paul Bakker20a78082011-01-21 09:32:12 +00001/*
2 * \brief Generic file encryption program using generic wrappers for configured
3 * security.
4 *
Paul Bakker243f48e2016-09-02 22:44:09 +02005 * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02006 * SPDX-License-Identifier: Apache-2.0
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License"); you may
9 * not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
Paul Bakker20a78082011-01-21 09:32:12 +000019 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000020 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker20a78082011-01-21 09:32:12 +000021 */
22
Nicholas Wilson2682edf2017-12-05 12:08:15 +000023/* Enable definition of fileno() even when compiling with -std=c99. Must be
24 * set before config.h, which pulls in glibc's features.h indirectly.
25 * Harmless on other platforms. */
26#define _POSIX_C_SOURCE 1
27
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000029#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020030#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020031#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020032#endif
Paul Bakker20a78082011-01-21 09:32:12 +000033
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020034#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000035#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000036#else
Rich Evans18b78c72015-02-11 14:06:19 +000037#include <stdio.h>
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +010038#include <stdlib.h>
39#define mbedtls_fprintf fprintf
40#define mbedtls_printf printf
Andres Amaya Garcia7d429652018-04-30 22:42:33 +010041#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +010042#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
43#endif /* MBEDTLS_PLATFORM_C */
Rich Evans18b78c72015-02-11 14:06:19 +000044
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020045#if defined(MBEDTLS_CIPHER_C) && defined(MBEDTLS_MD_C) && \
46 defined(MBEDTLS_FS_IO)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000047#include "mbedtls/cipher.h"
48#include "mbedtls/md.h"
Rich Evans18b78c72015-02-11 14:06:19 +000049
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
Rich Evansf90016a2015-01-19 14:26:37 +000053#endif
54
Paul Bakker494c0b82011-04-24 15:30:07 +000055#if defined(_WIN32)
Paul Bakker20a78082011-01-21 09:32:12 +000056#include <windows.h>
Paul Bakkercce9d772011-11-18 14:26:47 +000057#if !defined(_WIN32_WCE)
Paul Bakker20a78082011-01-21 09:32:12 +000058#include <io.h>
Paul Bakkercce9d772011-11-18 14:26:47 +000059#endif
Paul Bakker20a78082011-01-21 09:32:12 +000060#else
61#include <sys/types.h>
62#include <unistd.h>
63#endif
64
Paul Bakker20a78082011-01-21 09:32:12 +000065#define MODE_ENCRYPT 0
66#define MODE_DECRYPT 1
67
68#define USAGE \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020069 "\n crypt_and_hash <mode> <input filename> <output filename> <cipher> <mbedtls_md> <key>\n" \
Paul Bakker20a78082011-01-21 09:32:12 +000070 "\n <mode>: 0 = encrypt, 1 = decrypt\n" \
71 "\n example: crypt_and_hash 0 file file.aes AES-128-CBC SHA1 hex:E76B2413958B00E193\n" \
72 "\n"
73
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020074#if !defined(MBEDTLS_CIPHER_C) || !defined(MBEDTLS_MD_C) || \
75 !defined(MBEDTLS_FS_IO)
Rich Evans85b05ec2015-02-12 11:37:29 +000076int main( void )
Paul Bakker5690efc2011-05-26 13:16:06 +000077{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020078 mbedtls_printf("MBEDTLS_CIPHER_C and/or MBEDTLS_MD_C and/or MBEDTLS_FS_IO not defined.\n");
Paul Bakker5690efc2011-05-26 13:16:06 +000079 return( 0 );
80}
81#else
Paul Bakker20a78082011-01-21 09:32:12 +000082int main( int argc, char *argv[] )
83{
Paul Bakker25b5fe52011-05-26 14:02:58 +000084 int ret = 1, i, n;
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +010085 int exit_code = MBEDTLS_EXIT_FAILURE;
Paul Bakker243f48e2016-09-02 22:44:09 +020086 int mode;
Paul Bakker25b5fe52011-05-26 14:02:58 +000087 size_t keylen, ilen, olen;
Paul Bakker20a78082011-01-21 09:32:12 +000088 FILE *fkey, *fin = NULL, *fout = NULL;
89
90 char *p;
91 unsigned char IV[16];
92 unsigned char key[512];
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020093 unsigned char digest[MBEDTLS_MD_MAX_SIZE];
Paul Bakker20a78082011-01-21 09:32:12 +000094 unsigned char buffer[1024];
95 unsigned char output[1024];
Paul Bakker424cd692013-10-31 14:22:08 +010096 unsigned char diff;
Paul Bakker20a78082011-01-21 09:32:12 +000097
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020098 const mbedtls_cipher_info_t *cipher_info;
99 const mbedtls_md_info_t *md_info;
100 mbedtls_cipher_context_t cipher_ctx;
101 mbedtls_md_context_t md_ctx;
Paul Bakkercce9d772011-11-18 14:26:47 +0000102#if defined(_WIN32_WCE)
103 long filesize, offset;
104#elif defined(_WIN32)
Paul Bakker20a78082011-01-21 09:32:12 +0000105 LARGE_INTEGER li_size;
106 __int64 filesize, offset;
107#else
108 off_t filesize, offset;
109#endif
110
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200111 mbedtls_cipher_init( &cipher_ctx );
112 mbedtls_md_init( &md_ctx );
Paul Bakker20a78082011-01-21 09:32:12 +0000113
114 /*
115 * Parse the command-line arguments.
116 */
117 if( argc != 7 )
118 {
119 const int *list;
120
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200121 mbedtls_printf( USAGE );
Paul Bakker20a78082011-01-21 09:32:12 +0000122
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200123 mbedtls_printf( "Available ciphers:\n" );
124 list = mbedtls_cipher_list();
Paul Bakker20a78082011-01-21 09:32:12 +0000125 while( *list )
126 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200127 cipher_info = mbedtls_cipher_info_from_type( *list );
128 mbedtls_printf( " %s\n", cipher_info->name );
Paul Bakker20a78082011-01-21 09:32:12 +0000129 list++;
130 }
131
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200132 mbedtls_printf( "\nAvailable message digests:\n" );
133 list = mbedtls_md_list();
Paul Bakker20a78082011-01-21 09:32:12 +0000134 while( *list )
135 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200136 md_info = mbedtls_md_info_from_type( *list );
137 mbedtls_printf( " %s\n", mbedtls_md_get_name( md_info ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000138 list++;
139 }
140
Paul Bakkercce9d772011-11-18 14:26:47 +0000141#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200142 mbedtls_printf( "\n Press Enter to exit this program.\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000143 fflush( stdout ); getchar();
144#endif
145
146 goto exit;
147 }
148
149 mode = atoi( argv[1] );
150
151 if( mode != MODE_ENCRYPT && mode != MODE_DECRYPT )
152 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200153 mbedtls_fprintf( stderr, "invalid operation mode\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000154 goto exit;
155 }
156
157 if( strcmp( argv[2], argv[3] ) == 0 )
158 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200159 mbedtls_fprintf( stderr, "input and output filenames must differ\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000160 goto exit;
161 }
162
163 if( ( fin = fopen( argv[2], "rb" ) ) == NULL )
164 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200165 mbedtls_fprintf( stderr, "fopen(%s,rb) failed\n", argv[2] );
Paul Bakker20a78082011-01-21 09:32:12 +0000166 goto exit;
167 }
168
169 if( ( fout = fopen( argv[3], "wb+" ) ) == NULL )
170 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200171 mbedtls_fprintf( stderr, "fopen(%s,wb+) failed\n", argv[3] );
Paul Bakker20a78082011-01-21 09:32:12 +0000172 goto exit;
173 }
174
175 /*
176 * Read the Cipher and MD from the command line
177 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200178 cipher_info = mbedtls_cipher_info_from_string( argv[4] );
Paul Bakker20a78082011-01-21 09:32:12 +0000179 if( cipher_info == NULL )
180 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200181 mbedtls_fprintf( stderr, "Cipher '%s' not found\n", argv[4] );
Paul Bakker20a78082011-01-21 09:32:12 +0000182 goto exit;
183 }
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200184 if( ( ret = mbedtls_cipher_setup( &cipher_ctx, cipher_info) ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200185 {
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200186 mbedtls_fprintf( stderr, "mbedtls_cipher_setup failed\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200187 goto exit;
188 }
Paul Bakker20a78082011-01-21 09:32:12 +0000189
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200190 md_info = mbedtls_md_info_from_string( argv[5] );
Paul Bakker20a78082011-01-21 09:32:12 +0000191 if( md_info == NULL )
192 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200193 mbedtls_fprintf( stderr, "Message Digest '%s' not found\n", argv[5] );
Paul Bakker20a78082011-01-21 09:32:12 +0000194 goto exit;
195 }
Janos Follath8eb64132016-06-03 15:40:57 +0100196
197 if( mbedtls_md_setup( &md_ctx, md_info, 1 ) != 0 )
198 {
Janos Follath352dbe22016-06-07 10:29:05 +0100199 mbedtls_fprintf( stderr, "mbedtls_md_setup failed\n" );
Janos Follath8eb64132016-06-03 15:40:57 +0100200 goto exit;
201 }
Paul Bakker20a78082011-01-21 09:32:12 +0000202
203 /*
Hanno Becker840bace2017-06-27 11:36:21 +0100204 * Read the secret key from file or command line
Paul Bakker20a78082011-01-21 09:32:12 +0000205 */
206 if( ( fkey = fopen( argv[6], "rb" ) ) != NULL )
207 {
208 keylen = fread( key, 1, sizeof( key ), fkey );
209 fclose( fkey );
210 }
211 else
212 {
213 if( memcmp( argv[6], "hex:", 4 ) == 0 )
214 {
215 p = &argv[6][4];
216 keylen = 0;
217
218 while( sscanf( p, "%02X", &n ) > 0 &&
219 keylen < (int) sizeof( key ) )
220 {
221 key[keylen++] = (unsigned char) n;
222 p += 2;
223 }
224 }
225 else
226 {
227 keylen = strlen( argv[6] );
228
229 if( keylen > (int) sizeof( key ) )
230 keylen = (int) sizeof( key );
231
232 memcpy( key, argv[6], keylen );
233 }
234 }
235
Paul Bakkercce9d772011-11-18 14:26:47 +0000236#if defined(_WIN32_WCE)
237 filesize = fseek( fin, 0L, SEEK_END );
238#else
239#if defined(_WIN32)
Paul Bakker20a78082011-01-21 09:32:12 +0000240 /*
241 * Support large files (> 2Gb) on Win32
242 */
243 li_size.QuadPart = 0;
244 li_size.LowPart =
245 SetFilePointer( (HANDLE) _get_osfhandle( _fileno( fin ) ),
246 li_size.LowPart, &li_size.HighPart, FILE_END );
247
248 if( li_size.LowPart == 0xFFFFFFFF && GetLastError() != NO_ERROR )
249 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200250 mbedtls_fprintf( stderr, "SetFilePointer(0,FILE_END) failed\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000251 goto exit;
252 }
253
254 filesize = li_size.QuadPart;
255#else
256 if( ( filesize = lseek( fileno( fin ), 0, SEEK_END ) ) < 0 )
257 {
258 perror( "lseek" );
259 goto exit;
260 }
261#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000262#endif
Paul Bakker20a78082011-01-21 09:32:12 +0000263
264 if( fseek( fin, 0, SEEK_SET ) < 0 )
265 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200266 mbedtls_fprintf( stderr, "fseek(0,SEEK_SET) failed\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000267 goto exit;
268 }
269
270 if( mode == MODE_ENCRYPT )
271 {
272 /*
273 * Generate the initialization vector as:
Paul Bakker243f48e2016-09-02 22:44:09 +0200274 * IV = MD( filesize || filename )[0..15]
Paul Bakker20a78082011-01-21 09:32:12 +0000275 */
276 for( i = 0; i < 8; i++ )
277 buffer[i] = (unsigned char)( filesize >> ( i << 3 ) );
278
279 p = argv[2];
280
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200281 mbedtls_md_starts( &md_ctx );
282 mbedtls_md_update( &md_ctx, buffer, 8 );
283 mbedtls_md_update( &md_ctx, (unsigned char *) p, strlen( p ) );
284 mbedtls_md_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000285
286 memcpy( IV, digest, 16 );
287
288 /*
Paul Bakker20a78082011-01-21 09:32:12 +0000289 * Append the IV at the beginning of the output.
290 */
291 if( fwrite( IV, 1, 16, fout ) != 16 )
292 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200293 mbedtls_fprintf( stderr, "fwrite(%d bytes) failed\n", 16 );
Paul Bakker20a78082011-01-21 09:32:12 +0000294 goto exit;
295 }
296
297 /*
298 * Hash the IV and the secret key together 8192 times
299 * using the result to setup the AES context and HMAC.
300 */
301 memset( digest, 0, 32 );
302 memcpy( digest, IV, 16 );
303
304 for( i = 0; i < 8192; i++ )
305 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200306 mbedtls_md_starts( &md_ctx );
307 mbedtls_md_update( &md_ctx, digest, 32 );
308 mbedtls_md_update( &md_ctx, key, keylen );
309 mbedtls_md_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000310
311 }
312
Manuel Pégourié-Gonnard898e0aa2015-06-18 15:28:12 +0200313 if( mbedtls_cipher_setkey( &cipher_ctx, digest, cipher_info->key_bitlen,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200314 MBEDTLS_ENCRYPT ) != 0 )
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000315 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200316 mbedtls_fprintf( stderr, "mbedtls_cipher_setkey() returned error\n");
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000317 goto exit;
318 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200319 if( mbedtls_cipher_set_iv( &cipher_ctx, IV, 16 ) != 0 )
Manuel Pégourié-Gonnard9c853b92013-09-03 13:04:44 +0200320 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200321 mbedtls_fprintf( stderr, "mbedtls_cipher_set_iv() returned error\n");
Manuel Pégourié-Gonnard9c853b92013-09-03 13:04:44 +0200322 goto exit;
323 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200324 if( mbedtls_cipher_reset( &cipher_ctx ) != 0 )
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000325 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200326 mbedtls_fprintf( stderr, "mbedtls_cipher_reset() returned error\n");
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000327 goto exit;
328 }
Paul Bakker20a78082011-01-21 09:32:12 +0000329
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200330 mbedtls_md_hmac_starts( &md_ctx, digest, 32 );
Paul Bakker20a78082011-01-21 09:32:12 +0000331
332 /*
333 * Encrypt and write the ciphertext.
334 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200335 for( offset = 0; offset < filesize; offset += mbedtls_cipher_get_block_size( &cipher_ctx ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000336 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200337 ilen = ( (unsigned int) filesize - offset > mbedtls_cipher_get_block_size( &cipher_ctx ) ) ?
338 mbedtls_cipher_get_block_size( &cipher_ctx ) : (unsigned int) ( filesize - offset );
Paul Bakker20a78082011-01-21 09:32:12 +0000339
Paul Bakker25b5fe52011-05-26 14:02:58 +0000340 if( fread( buffer, 1, ilen, fin ) != ilen )
Paul Bakker20a78082011-01-21 09:32:12 +0000341 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200342 mbedtls_fprintf( stderr, "fread(%ld bytes) failed\n", (long) ilen );
Paul Bakker20a78082011-01-21 09:32:12 +0000343 goto exit;
344 }
345
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200346 if( mbedtls_cipher_update( &cipher_ctx, buffer, ilen, output, &olen ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200347 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200348 mbedtls_fprintf( stderr, "mbedtls_cipher_update() returned error\n");
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200349 goto exit;
350 }
351
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200352 mbedtls_md_hmac_update( &md_ctx, output, olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000353
Paul Bakker2c0994e2011-05-25 13:51:57 +0000354 if( fwrite( output, 1, olen, fout ) != olen )
Paul Bakker20a78082011-01-21 09:32:12 +0000355 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200356 mbedtls_fprintf( stderr, "fwrite(%ld bytes) failed\n", (long) olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000357 goto exit;
358 }
359 }
360
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200361 if( mbedtls_cipher_finish( &cipher_ctx, output, &olen ) != 0 )
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000362 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200363 mbedtls_fprintf( stderr, "mbedtls_cipher_finish() returned error\n" );
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000364 goto exit;
365 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200366 mbedtls_md_hmac_update( &md_ctx, output, olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000367
Paul Bakker2c0994e2011-05-25 13:51:57 +0000368 if( fwrite( output, 1, olen, fout ) != olen )
Paul Bakker20a78082011-01-21 09:32:12 +0000369 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200370 mbedtls_fprintf( stderr, "fwrite(%ld bytes) failed\n", (long) olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000371 goto exit;
372 }
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000373
Paul Bakker20a78082011-01-21 09:32:12 +0000374 /*
375 * Finally write the HMAC.
376 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200377 mbedtls_md_hmac_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000378
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200379 if( fwrite( digest, 1, mbedtls_md_get_size( md_info ), fout ) != mbedtls_md_get_size( md_info ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000380 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200381 mbedtls_fprintf( stderr, "fwrite(%d bytes) failed\n", mbedtls_md_get_size( md_info ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000382 goto exit;
383 }
384 }
385
386 if( mode == MODE_DECRYPT )
387 {
388 /*
389 * The encrypted file must be structured as follows:
390 *
391 * 00 .. 15 Initialization Vector
Paul Bakker243f48e2016-09-02 22:44:09 +0200392 * 16 .. 31 Encrypted Block #1
Paul Bakker20a78082011-01-21 09:32:12 +0000393 * ..
Paul Bakker243f48e2016-09-02 22:44:09 +0200394 * N*16 .. (N+1)*16 - 1 Encrypted Block #N
395 * (N+1)*16 .. (N+1)*16 + n Hash(ciphertext)
Paul Bakker20a78082011-01-21 09:32:12 +0000396 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200397 if( filesize < 16 + mbedtls_md_get_size( md_info ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000398 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200399 mbedtls_fprintf( stderr, "File too short to be encrypted.\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000400 goto exit;
401 }
402
Janos Follath8eb64132016-06-03 15:40:57 +0100403 if( mbedtls_cipher_get_block_size( &cipher_ctx ) == 0 )
404 {
Janos Follath352dbe22016-06-07 10:29:05 +0100405 mbedtls_fprintf( stderr, "Invalid cipher block size: 0. \n" );
Janos Follath8eb64132016-06-03 15:40:57 +0100406 goto exit;
407 }
408
409 /*
410 * Check the file size.
411 */
Paul Bakker243f48e2016-09-02 22:44:09 +0200412 if( cipher_info->mode != MBEDTLS_MODE_GCM &&
413 ( ( filesize - mbedtls_md_get_size( md_info ) ) %
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200414 mbedtls_cipher_get_block_size( &cipher_ctx ) ) != 0 )
Paul Bakker20a78082011-01-21 09:32:12 +0000415 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200416 mbedtls_fprintf( stderr, "File content not a multiple of the block size (%d).\n",
417 mbedtls_cipher_get_block_size( &cipher_ctx ));
Paul Bakker20a78082011-01-21 09:32:12 +0000418 goto exit;
419 }
420
421 /*
Paul Bakker60b1d102013-10-29 10:02:51 +0100422 * Subtract the IV + HMAC length.
Paul Bakker20a78082011-01-21 09:32:12 +0000423 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200424 filesize -= ( 16 + mbedtls_md_get_size( md_info ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000425
426 /*
427 * Read the IV and original filesize modulo 16.
428 */
429 if( fread( buffer, 1, 16, fin ) != 16 )
430 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200431 mbedtls_fprintf( stderr, "fread(%d bytes) failed\n", 16 );
Paul Bakker20a78082011-01-21 09:32:12 +0000432 goto exit;
433 }
434
435 memcpy( IV, buffer, 16 );
Paul Bakker20a78082011-01-21 09:32:12 +0000436
437 /*
438 * Hash the IV and the secret key together 8192 times
439 * using the result to setup the AES context and HMAC.
440 */
441 memset( digest, 0, 32 );
442 memcpy( digest, IV, 16 );
443
444 for( i = 0; i < 8192; i++ )
445 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200446 mbedtls_md_starts( &md_ctx );
447 mbedtls_md_update( &md_ctx, digest, 32 );
448 mbedtls_md_update( &md_ctx, key, keylen );
449 mbedtls_md_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000450 }
451
Manuel Pégourié-Gonnard898e0aa2015-06-18 15:28:12 +0200452 if( mbedtls_cipher_setkey( &cipher_ctx, digest, cipher_info->key_bitlen,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200453 MBEDTLS_DECRYPT ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200454 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200455 mbedtls_fprintf( stderr, "mbedtls_cipher_setkey() returned error\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200456 goto exit;
457 }
458
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200459 if( mbedtls_cipher_set_iv( &cipher_ctx, IV, 16 ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200460 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200461 mbedtls_fprintf( stderr, "mbedtls_cipher_set_iv() returned error\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200462 goto exit;
463 }
464
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200465 if( mbedtls_cipher_reset( &cipher_ctx ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200466 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200467 mbedtls_fprintf( stderr, "mbedtls_cipher_reset() returned error\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200468 goto exit;
469 }
Paul Bakker20a78082011-01-21 09:32:12 +0000470
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200471 mbedtls_md_hmac_starts( &md_ctx, digest, 32 );
Paul Bakker20a78082011-01-21 09:32:12 +0000472
473 /*
474 * Decrypt and write the plaintext.
475 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200476 for( offset = 0; offset < filesize; offset += mbedtls_cipher_get_block_size( &cipher_ctx ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000477 {
Paul Bakker243f48e2016-09-02 22:44:09 +0200478 ilen = ( (unsigned int) filesize - offset > mbedtls_cipher_get_block_size( &cipher_ctx ) ) ?
479 mbedtls_cipher_get_block_size( &cipher_ctx ) : (unsigned int) ( filesize - offset );
480
481 if( fread( buffer, 1, ilen, fin ) != ilen )
Paul Bakker20a78082011-01-21 09:32:12 +0000482 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200483 mbedtls_fprintf( stderr, "fread(%d bytes) failed\n",
484 mbedtls_cipher_get_block_size( &cipher_ctx ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000485 goto exit;
486 }
487
Paul Bakker243f48e2016-09-02 22:44:09 +0200488 mbedtls_md_hmac_update( &md_ctx, buffer, ilen );
489 if( mbedtls_cipher_update( &cipher_ctx, buffer, ilen, output,
490 &olen ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200491 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200492 mbedtls_fprintf( stderr, "mbedtls_cipher_update() returned error\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200493 goto exit;
494 }
Paul Bakker20a78082011-01-21 09:32:12 +0000495
Paul Bakker2c0994e2011-05-25 13:51:57 +0000496 if( fwrite( output, 1, olen, fout ) != olen )
Paul Bakker20a78082011-01-21 09:32:12 +0000497 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200498 mbedtls_fprintf( stderr, "fwrite(%ld bytes) failed\n", (long) olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000499 goto exit;
500 }
501 }
502
503 /*
Paul Bakker20a78082011-01-21 09:32:12 +0000504 * Verify the message authentication code.
505 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200506 mbedtls_md_hmac_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000507
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200508 if( fread( buffer, 1, mbedtls_md_get_size( md_info ), fin ) != mbedtls_md_get_size( md_info ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000509 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200510 mbedtls_fprintf( stderr, "fread(%d bytes) failed\n", mbedtls_md_get_size( md_info ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000511 goto exit;
512 }
513
Paul Bakker424cd692013-10-31 14:22:08 +0100514 /* Use constant-time buffer comparison */
515 diff = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200516 for( i = 0; i < mbedtls_md_get_size( md_info ); i++ )
Paul Bakker424cd692013-10-31 14:22:08 +0100517 diff |= digest[i] ^ buffer[i];
518
519 if( diff != 0 )
Paul Bakker20a78082011-01-21 09:32:12 +0000520 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200521 mbedtls_fprintf( stderr, "HMAC check failed: wrong key, "
Paul Bakker20a78082011-01-21 09:32:12 +0000522 "or file corrupted.\n" );
523 goto exit;
524 }
Manuel Pégourié-Gonnard0f2eacb2013-11-25 17:55:17 +0100525
526 /*
527 * Write the final block of data
528 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200529 mbedtls_cipher_finish( &cipher_ctx, output, &olen );
Manuel Pégourié-Gonnard0f2eacb2013-11-25 17:55:17 +0100530
531 if( fwrite( output, 1, olen, fout ) != olen )
532 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200533 mbedtls_fprintf( stderr, "fwrite(%ld bytes) failed\n", (long) olen );
Manuel Pégourié-Gonnard0f2eacb2013-11-25 17:55:17 +0100534 goto exit;
535 }
Paul Bakker20a78082011-01-21 09:32:12 +0000536 }
537
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +0100538 exit_code = MBEDTLS_EXIT_SUCCESS;
Paul Bakker20a78082011-01-21 09:32:12 +0000539
540exit:
Paul Bakker6d440322011-02-06 12:49:19 +0000541 if( fin )
542 fclose( fin );
543 if( fout )
544 fclose( fout );
Paul Bakker20a78082011-01-21 09:32:12 +0000545
Hanno Beckerf601ec52017-06-27 08:22:17 +0100546 /* Zeroize all command line arguments to also cover
547 the case when the user has missed or reordered some,
548 in which case the key might not be in argv[6]. */
549 for( i = 0; i < argc; i++ )
550 memset( argv[i], 0, strlen( argv[i] ) );
551
552 memset( IV, 0, sizeof( IV ) );
553 memset( key, 0, sizeof( key ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000554 memset( buffer, 0, sizeof( buffer ) );
Hanno Beckerf601ec52017-06-27 08:22:17 +0100555 memset( output, 0, sizeof( output ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000556 memset( digest, 0, sizeof( digest ) );
557
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200558 mbedtls_cipher_free( &cipher_ctx );
559 mbedtls_md_free( &md_ctx );
Paul Bakker20a78082011-01-21 09:32:12 +0000560
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +0100561 return( exit_code );
Paul Bakker20a78082011-01-21 09:32:12 +0000562}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200563#endif /* MBEDTLS_CIPHER_C && MBEDTLS_MD_C && MBEDTLS_FS_IO */