blob: 5121afe59d5eca653fb8fea49b298214d2391939 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
Manuel Pégourié-Gonnard6f60cd82015-02-10 10:47:03 +00002 * RSA/SHA-256 signature verification program
Paul Bakker5121ce52009-01-03 21:22:43 +00003 *
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_RSA_C) && \
Rich Evans18b78c72015-02-11 14:06:19 +000037 defined(POLARSSL_SHA256_C) && defined(POLARSSL_FS_IO)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000038#include "mbedtls/rsa.h"
39#include "mbedtls/sha1.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000040
Rich Evans18b78c72015-02-11 14:06:19 +000041#include <stdio.h>
42#include <string.h>
43#endif
44
Paul Bakker5690efc2011-05-26 13:16:06 +000045#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \
Manuel Pégourié-Gonnard6f60cd82015-02-10 10:47:03 +000046 !defined(POLARSSL_SHA256_C) || !defined(POLARSSL_FS_IO)
Rich Evans85b05ec2015-02-12 11:37:29 +000047int main( void )
Paul Bakker5690efc2011-05-26 13:16:06 +000048{
Rich Evansf90016a2015-01-19 14:26:37 +000049 polarssl_printf("POLARSSL_BIGNUM_C and/or POLARSSL_RSA_C and/or "
Manuel Pégourié-Gonnard6f60cd82015-02-10 10:47:03 +000050 "POLARSSL_SHA256_C and/or POLARSSL_FS_IO not defined.\n");
Paul Bakker5690efc2011-05-26 13:16:06 +000051 return( 0 );
52}
53#else
Paul Bakker5121ce52009-01-03 21:22:43 +000054int main( int argc, char *argv[] )
55{
56 FILE *f;
Paul Bakker23986e52011-04-24 08:57:21 +000057 int ret, c;
58 size_t i;
Paul Bakker5121ce52009-01-03 21:22:43 +000059 rsa_context rsa;
60 unsigned char hash[20];
Paul Bakker1d569582012-10-03 20:35:44 +000061 unsigned char buf[POLARSSL_MPI_MAX_SIZE];
Paul Bakker5121ce52009-01-03 21:22:43 +000062
63 ret = 1;
64 if( argc != 2 )
65 {
Rich Evansf90016a2015-01-19 14:26:37 +000066 polarssl_printf( "usage: rsa_verify <filename>\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +000067
Paul Bakkercce9d772011-11-18 14:26:47 +000068#if defined(_WIN32)
Rich Evansf90016a2015-01-19 14:26:37 +000069 polarssl_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +000070#endif
71
72 goto exit;
73 }
74
Rich Evansf90016a2015-01-19 14:26:37 +000075 polarssl_printf( "\n . Reading public key from rsa_pub.txt" );
Paul Bakker5121ce52009-01-03 21:22:43 +000076 fflush( stdout );
77
78 if( ( f = fopen( "rsa_pub.txt", "rb" ) ) == NULL )
79 {
Rich Evansf90016a2015-01-19 14:26:37 +000080 polarssl_printf( " failed\n ! Could not open rsa_pub.txt\n" \
Paul Bakker5121ce52009-01-03 21:22:43 +000081 " ! Please run rsa_genkey first\n\n" );
82 goto exit;
83 }
84
Paul Bakkera802e1a2010-08-16 11:56:45 +000085 rsa_init( &rsa, RSA_PKCS_V15, 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +000086
87 if( ( ret = mpi_read_file( &rsa.N, 16, f ) ) != 0 ||
88 ( ret = mpi_read_file( &rsa.E, 16, f ) ) != 0 )
89 {
Rich Evansf90016a2015-01-19 14:26:37 +000090 polarssl_printf( " failed\n ! mpi_read_file returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +000091 goto exit;
92 }
93
94 rsa.len = ( mpi_msb( &rsa.N ) + 7 ) >> 3;
95
96 fclose( f );
97
98 /*
99 * Extract the RSA signature from the text file
100 */
101 ret = 1;
102 i = strlen( argv[1] );
103 memcpy( argv[1] + i, ".sig", 5 );
104
105 if( ( f = fopen( argv[1], "rb" ) ) == NULL )
106 {
Rich Evansf90016a2015-01-19 14:26:37 +0000107 polarssl_printf( "\n ! Could not open %s\n\n", argv[1] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000108 goto exit;
109 }
110
111 argv[1][i] = '\0', i = 0;
112
113 while( fscanf( f, "%02X", &c ) > 0 &&
114 i < (int) sizeof( buf ) )
115 buf[i++] = (unsigned char) c;
116
117 fclose( f );
118
119 if( i != rsa.len )
120 {
Rich Evansf90016a2015-01-19 14:26:37 +0000121 polarssl_printf( "\n ! Invalid RSA signature format\n\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000122 goto exit;
123 }
124
125 /*
Manuel Pégourié-Gonnard6f60cd82015-02-10 10:47:03 +0000126 * Compute the SHA-256 hash of the input file and compare
Paul Bakker5121ce52009-01-03 21:22:43 +0000127 * it with the hash decrypted from the RSA signature.
128 */
Manuel Pégourié-Gonnard6f60cd82015-02-10 10:47:03 +0000129 polarssl_printf( "\n . Verifying the RSA/SHA-256 signature" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000130 fflush( stdout );
131
132 if( ( ret = sha1_file( argv[1], hash ) ) != 0 )
133 {
Rich Evansf90016a2015-01-19 14:26:37 +0000134 polarssl_printf( " failed\n ! Could not open or read %s\n\n", argv[1] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000135 goto exit;
136 }
137
Paul Bakker548957d2013-08-30 10:30:02 +0200138 if( ( ret = rsa_pkcs1_verify( &rsa, NULL, NULL, RSA_PUBLIC,
Manuel Pégourié-Gonnard6f60cd82015-02-10 10:47:03 +0000139 POLARSSL_MD_SHA256, 20, hash, buf ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000140 {
Rich Evansf90016a2015-01-19 14:26:37 +0000141 polarssl_printf( " failed\n ! rsa_pkcs1_verify returned -0x%0x\n\n", -ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000142 goto exit;
143 }
144
Manuel Pégourié-Gonnard6f60cd82015-02-10 10:47:03 +0000145 polarssl_printf( "\n . OK (the decrypted SHA-256 hash matches)\n\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000146
147 ret = 0;
148
149exit:
150
Paul Bakkercce9d772011-11-18 14:26:47 +0000151#if defined(_WIN32)
Rich Evansf90016a2015-01-19 14:26:37 +0000152 polarssl_printf( " + Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000153 fflush( stdout ); getchar();
154#endif
155
156 return( ret );
157}
Manuel Pégourié-Gonnard6f60cd82015-02-10 10:47:03 +0000158#endif /* POLARSSL_BIGNUM_C && POLARSSL_RSA_C && POLARSSL_SHA256_C &&
Paul Bakker5690efc2011-05-26 13:16:06 +0000159 POLARSSL_FS_IO */