2013-09-18 15:34:57 +02:00
|
|
|
/*
|
|
|
|
* Public key-based simple decryption program
|
|
|
|
*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-09-18 15:34:57 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-09-18 15:34:57 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-09-18 15:34:57 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2013-09-18 15:34:57 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2013-09-18 15:34:57 +02:00
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2013-09-18 15:34:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2015-01-19 15:26:37 +01:00
|
|
|
#else
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_printf printf
|
2015-01-19 15:26:37 +01:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_BIGNUM_C) && defined(MBEDTLS_PK_PARSE_C) && \
|
|
|
|
defined(MBEDTLS_FS_IO) && defined(MBEDTLS_ENTROPY_C) && \
|
|
|
|
defined(MBEDTLS_CTR_DRBG_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/pk.h"
|
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
2013-09-18 15:34:57 +02:00
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_PK_PARSE_C) || \
|
|
|
|
!defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_ENTROPY_C) || \
|
|
|
|
!defined(MBEDTLS_CTR_DRBG_C)
|
2015-02-12 12:37:29 +01:00
|
|
|
int main( void )
|
2013-09-18 15:34:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("MBEDTLS_BIGNUM_C and/or MBEDTLS_PK_PARSE_C and/or "
|
|
|
|
"MBEDTLS_FS_IO and/or MBEDTLS_ENTROPY_C and/or "
|
|
|
|
"MBEDTLS_CTR_DRBG_C not defined.\n");
|
2013-09-18 15:34:57 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
int ret, c;
|
|
|
|
size_t i, olen = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_context pk;
|
|
|
|
mbedtls_entropy_context entropy;
|
|
|
|
mbedtls_ctr_drbg_context ctr_drbg;
|
2013-09-18 15:34:57 +02:00
|
|
|
unsigned char result[1024];
|
|
|
|
unsigned char buf[512];
|
2015-04-08 12:49:31 +02:00
|
|
|
const char *pers = "mbedtls_pk_decrypt";
|
2013-09-18 15:34:57 +02:00
|
|
|
((void) argv);
|
|
|
|
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_ctr_drbg_init( &ctr_drbg );
|
2013-09-18 15:34:57 +02:00
|
|
|
memset(result, 0, sizeof( result ) );
|
|
|
|
ret = 1;
|
|
|
|
|
|
|
|
if( argc != 2 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "usage: mbedtls_pk_decrypt <key_file>\n" );
|
2013-09-18 15:34:57 +02:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n" );
|
2013-09-18 15:34:57 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Seeding the random number generator..." );
|
2013-09-18 15:34:57 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_init( &entropy );
|
2015-04-28 22:52:30 +02:00
|
|
|
if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy,
|
2013-09-18 15:34:57 +02:00
|
|
|
(const unsigned char *) pers,
|
|
|
|
strlen( pers ) ) ) != 0 )
|
|
|
|
{
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret );
|
2013-09-18 15:34:57 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Reading private key from '%s'", argv[1] );
|
2013-09-18 15:34:57 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_init( &pk );
|
2013-09-18 15:34:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_pk_parse_keyfile( &pk, argv[1], "" ) ) != 0 )
|
2013-09-18 15:34:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_pk_parse_keyfile returned -0x%04x\n", -ret );
|
2013-09-18 15:34:57 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract the RSA encrypted value from the text file
|
|
|
|
*/
|
|
|
|
ret = 1;
|
|
|
|
|
|
|
|
if( ( f = fopen( "result-enc.txt", "rb" ) ) == NULL )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n ! Could not open %s\n\n", "result-enc.txt" );
|
2013-09-18 15:34:57 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
while( fscanf( f, "%02X", &c ) > 0 &&
|
|
|
|
i < (int) sizeof( buf ) )
|
|
|
|
buf[i++] = (unsigned char) c;
|
|
|
|
|
|
|
|
fclose( f );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Decrypt the encrypted RSA data and print the result.
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Decrypting the encrypted data" );
|
2013-09-18 15:34:57 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_pk_decrypt( &pk, buf, i, result, &olen, sizeof(result),
|
|
|
|
mbedtls_ctr_drbg_random, &ctr_drbg ) ) != 0 )
|
2013-09-18 15:34:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_pk_decrypt returned -0x%04x\n", -ret );
|
2013-09-18 15:34:57 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . OK\n\n" );
|
2013-09-18 15:34:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "The decrypted result is: '%s'\n\n", result );
|
2013-09-18 15:34:57 +02:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_free( &ctr_drbg );
|
|
|
|
mbedtls_entropy_free( &entropy );
|
2013-09-18 15:34:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ERROR_C)
|
2015-08-27 22:03:33 +02:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_strerror( ret, (char *) buf, sizeof(buf) );
|
|
|
|
mbedtls_printf( " ! Last error was: %s\n", buf );
|
|
|
|
}
|
2013-09-18 18:57:10 +02:00
|
|
|
#endif
|
|
|
|
|
2013-09-18 15:34:57 +02:00
|
|
|
#if defined(_WIN32)
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " + Press Enter to exit this program.\n" );
|
2013-09-18 15:34:57 +02:00
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_PK_PARSE_C && MBEDTLS_FS_IO &&
|
|
|
|
MBEDTLS_ENTROPY_C && MBEDTLS_CTR_DRBG_C */
|