2013-09-18 15:34:57 +02:00
|
|
|
/*
|
|
|
|
* RSA simple data encryption 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>
|
2018-04-29 23:19:26 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#define mbedtls_fprintf fprintf
|
|
|
|
#define mbedtls_printf printf
|
2018-12-10 14:31:45 +01:00
|
|
|
#define mbedtls_exit exit
|
2018-04-30 23:42:33 +02:00
|
|
|
#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
|
2018-04-29 23:19:26 +02:00
|
|
|
#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
|
|
|
|
#endif /* MBEDTLS_PLATFORM_C */
|
2015-01-19 15:26:37 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_BIGNUM_C) && defined(MBEDTLS_PK_PARSE_C) && \
|
|
|
|
defined(MBEDTLS_ENTROPY_C) && defined(MBEDTLS_FS_IO) && \
|
|
|
|
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_ENTROPY_C) || !defined(MBEDTLS_FS_IO) || \
|
|
|
|
!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_ENTROPY_C and/or MBEDTLS_FS_IO and/or "
|
|
|
|
"MBEDTLS_CTR_DRBG_C not defined.\n");
|
2013-09-18 15:34:57 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
2018-12-06 18:43:31 +01:00
|
|
|
|
|
|
|
|
2013-09-18 15:34:57 +02:00
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
FILE *f;
|
2018-04-29 23:19:26 +02:00
|
|
|
int ret = 1;
|
|
|
|
int exit_code = MBEDTLS_EXIT_FAILURE;
|
2013-09-18 15:34:57 +02:00
|
|
|
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 input[1024];
|
|
|
|
unsigned char buf[512];
|
2015-04-08 12:49:31 +02:00
|
|
|
const char *pers = "mbedtls_pk_encrypt";
|
2013-09-18 15:34:57 +02:00
|
|
|
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_ctr_drbg_init( &ctr_drbg );
|
2018-08-23 15:36:33 +02:00
|
|
|
mbedtls_entropy_init( &entropy );
|
|
|
|
mbedtls_pk_init( &pk );
|
2013-09-18 15:34:57 +02:00
|
|
|
|
|
|
|
if( argc != 3 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "usage: mbedtls_pk_encrypt <key_file> <string of max 100 characters>\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 );
|
|
|
|
|
2018-08-23 15:39:04 +02:00
|
|
|
if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func,
|
|
|
|
&entropy, (const unsigned char *) pers,
|
|
|
|
strlen( pers ) ) ) != 0 )
|
2013-09-18 15:34:57 +02:00
|
|
|
{
|
2018-08-23 15:39:04 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed 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 . Reading public key from '%s'", argv[1] );
|
2013-09-18 15:34:57 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_pk_parse_public_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_public_keyfile returned -0x%04x\n", -ret );
|
2013-09-18 15:34:57 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( strlen( argv[2] ) > 100 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " Input data larger than 100 characters.\n\n" );
|
2013-09-18 15:34:57 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy( input, argv[2], strlen( argv[2] ) );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate the RSA encryption of the hash.
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Generating the encrypted value" );
|
2013-09-18 15:34:57 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_pk_encrypt( &pk, input, strlen( argv[2] ),
|
2013-09-18 15:34:57 +02:00
|
|
|
buf, &olen, sizeof(buf),
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_random, &ctr_drbg ) ) != 0 )
|
2013-09-18 15:34:57 +02:00
|
|
|
{
|
2018-08-23 15:39:04 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_pk_encrypt returned -0x%04x\n",
|
|
|
|
-ret );
|
2013-09-18 15:34:57 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the signature into result-enc.txt
|
|
|
|
*/
|
|
|
|
if( ( f = fopen( "result-enc.txt", "wb+" ) ) == NULL )
|
|
|
|
{
|
2018-08-23 15:39:04 +02:00
|
|
|
mbedtls_printf( " failed\n ! Could not create %s\n\n",
|
|
|
|
"result-enc.txt" );
|
2018-08-23 15:36:33 +02:00
|
|
|
ret = 1;
|
2013-09-18 15:34:57 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( i = 0; i < olen; i++ )
|
2018-08-23 15:39:04 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_fprintf( f, "%02X%s", buf[i],
|
2013-09-18 15:34:57 +02:00
|
|
|
( i + 1 ) % 16 == 0 ? "\r\n" : " " );
|
2018-08-23 15:39:04 +02:00
|
|
|
}
|
2013-09-18 15:34:57 +02:00
|
|
|
|
|
|
|
fclose( f );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Done (created \"%s\")\n\n", "result-enc.txt" );
|
2013-09-18 15:34:57 +02:00
|
|
|
|
2018-04-29 23:19:26 +02:00
|
|
|
exit_code = MBEDTLS_EXIT_SUCCESS;
|
|
|
|
|
2013-09-18 15:34:57 +02:00
|
|
|
exit:
|
2018-08-23 15:36:33 +02:00
|
|
|
|
|
|
|
mbedtls_pk_free( &pk );
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_free( &entropy );
|
2018-08-23 15:36:33 +02:00
|
|
|
mbedtls_ctr_drbg_free( &ctr_drbg );
|
2013-09-18 15:34:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ERROR_C)
|
2018-04-29 23:19:26 +02:00
|
|
|
if( exit_code != MBEDTLS_EXIT_SUCCESS )
|
2015-08-27 22:03:33 +02:00
|
|
|
{
|
2018-08-23 15:39:04 +02:00
|
|
|
mbedtls_strerror( ret, (char *) buf, sizeof( buf ) );
|
2015-08-27 22:03:33 +02:00
|
|
|
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
|
|
|
|
|
2018-04-29 23:19:26 +02:00
|
|
|
return( exit_code );
|
2013-09-18 15:34:57 +02:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_PK_PARSE_C && MBEDTLS_ENTROPY_C &&
|
|
|
|
MBEDTLS_FS_IO && MBEDTLS_CTR_DRBG_C */
|