2013-09-18 13:34:57 +00:00
|
|
|
/*
|
|
|
|
* Public key-based signature verification program
|
|
|
|
*
|
2015-07-27 09:11:48 +00:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2013-09-18 13:34:57 +00:00
|
|
|
*
|
2015-03-06 13:17:10 +00:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2013-09-18 13:34:57 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 10:39:06 +00:00
|
|
|
#else
|
2015-04-08 10:49:31 +00:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 10:39:06 +00:00
|
|
|
#endif
|
2013-09-18 13:34:57 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/platform.h"
|
2015-01-19 14:26:37 +00:00
|
|
|
#else
|
2015-02-11 14:06:19 +00:00
|
|
|
#include <stdio.h>
|
2015-04-08 10:49:31 +00:00
|
|
|
#define mbedtls_snprintf snprintf
|
|
|
|
#define mbedtls_printf printf
|
2015-01-19 14:26:37 +00:00
|
|
|
#endif
|
|
|
|
|
2015-05-28 14:23:18 +00:00
|
|
|
#if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_MD_C) || \
|
|
|
|
!defined(MBEDTLS_SHA256_C) || !defined(MBEDTLS_PK_PARSE_C) || \
|
|
|
|
!defined(MBEDTLS_FS_IO)
|
|
|
|
int main( void )
|
|
|
|
{
|
|
|
|
mbedtls_printf("MBEDTLS_BIGNUM_C and/or MBEDTLS_MD_C and/or "
|
|
|
|
"MBEDTLS_SHA256_C and/or MBEDTLS_PK_PARSE_C and/or "
|
|
|
|
"MBEDTLS_FS_IO not defined.\n");
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/md.h"
|
|
|
|
#include "mbedtls/pk.h"
|
2013-09-18 13:34:57 +00:00
|
|
|
|
2015-02-11 14:06:19 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2013-09-18 13:34:57 +00:00
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
FILE *f;
|
2014-04-17 14:02:36 +00:00
|
|
|
int ret = 1;
|
2013-09-18 13:34:57 +00:00
|
|
|
size_t i;
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_pk_context pk;
|
2015-08-27 19:51:44 +00:00
|
|
|
unsigned char hash[32];
|
2015-04-08 10:49:31 +00:00
|
|
|
unsigned char buf[MBEDTLS_MPI_MAX_SIZE];
|
2013-09-18 13:34:57 +00:00
|
|
|
char filename[512];
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_pk_init( &pk );
|
2014-04-17 14:02:36 +00:00
|
|
|
|
2013-09-18 13:34:57 +00:00
|
|
|
if( argc != 3 )
|
|
|
|
{
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( "usage: mbedtls_pk_verify <key_file> <filename>\n" );
|
2013-09-18 13:34:57 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( "\n" );
|
2013-09-18 13:34:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( "\n . Reading public key from '%s'", argv[1] );
|
2013-09-18 13:34:57 +00:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
if( ( ret = mbedtls_pk_parse_public_keyfile( &pk, argv[1] ) ) != 0 )
|
2013-09-18 13:34:57 +00:00
|
|
|
{
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_pk_parse_public_keyfile returned -0x%04x\n", -ret );
|
2013-09-18 13:34:57 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-08-27 19:42:27 +00:00
|
|
|
* Extract the signature from the file
|
2013-09-18 13:34:57 +00:00
|
|
|
*/
|
|
|
|
ret = 1;
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_snprintf( filename, sizeof(filename), "%s.sig", argv[2] );
|
2013-09-18 13:34:57 +00:00
|
|
|
|
|
|
|
if( ( f = fopen( filename, "rb" ) ) == NULL )
|
|
|
|
{
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( "\n ! Could not open %s\n\n", filename );
|
2013-09-18 13:34:57 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
i = fread( buf, 1, sizeof(buf), f );
|
|
|
|
|
|
|
|
fclose( f );
|
|
|
|
|
|
|
|
/*
|
2015-02-10 10:47:03 +00:00
|
|
|
* Compute the SHA-256 hash of the input file and compare
|
2013-09-18 13:34:57 +00:00
|
|
|
* it with the hash decrypted from the signature.
|
|
|
|
*/
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( "\n . Verifying the SHA-256 signature" );
|
2013-09-18 13:34:57 +00:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-05-28 14:23:18 +00:00
|
|
|
if( ( ret = mbedtls_md_file(
|
|
|
|
mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ),
|
|
|
|
argv[2], hash ) ) != 0 )
|
2013-09-18 13:34:57 +00:00
|
|
|
{
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( " failed\n ! Could not open or read %s\n\n", argv[2] );
|
2013-09-18 13:34:57 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
if( ( ret = mbedtls_pk_verify( &pk, MBEDTLS_MD_SHA256, hash, 0,
|
2013-09-18 13:34:57 +00:00
|
|
|
buf, i ) ) != 0 )
|
|
|
|
{
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_pk_verify returned -0x%04x\n", -ret );
|
2013-09-18 13:34:57 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( "\n . OK (the decrypted SHA-256 hash matches)\n\n" );
|
2013-09-18 13:34:57 +00:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_pk_free( &pk );
|
2013-09-18 13:34:57 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_ERROR_C)
|
|
|
|
mbedtls_strerror( ret, (char *) buf, sizeof(buf) );
|
|
|
|
mbedtls_printf( " ! Last error was: %s\n", buf );
|
2013-09-18 16:57:10 +00:00
|
|
|
#endif
|
|
|
|
|
2013-09-18 13:34:57 +00:00
|
|
|
#if defined(_WIN32)
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_printf( " + Press Enter to exit this program.\n" );
|
2013-09-18 13:34:57 +00:00
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2015-04-08 10:49:31 +00:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_SHA256_C &&
|
|
|
|
MBEDTLS_PK_PARSE_C && MBEDTLS_FS_IO */
|