2011-01-27 17:50:02 +01:00
|
|
|
/**
|
2011-12-03 22:45:14 +01:00
|
|
|
* \brief Use and generate multiple entropies calls into a file
|
2011-01-27 17:50:02 +01:00
|
|
|
*
|
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
|
2011-01-27 17:50:02 +01: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
|
2011-01-27 17:50:02 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-01-27 17:50:02 +01: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.
|
2011-01-27 17:50:02 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2011-01-27 17:50:02 +01: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
|
2011-05-26 15:16:06 +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 21:40:36 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#define mbedtls_fprintf fprintf
|
|
|
|
#define mbedtls_printf printf
|
2018-04-30 23:42:33 +02:00
|
|
|
#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
|
2018-04-29 21:40:36 +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_ENTROPY_C) && defined(MBEDTLS_FS_IO)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/entropy.h"
|
2011-05-26 15:16:06 +02:00
|
|
|
|
2011-01-27 17:50:02 +01:00
|
|
|
#include <stdio.h>
|
2015-02-11 15:06:19 +01:00
|
|
|
#endif
|
2011-01-27 17:50:02 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_FS_IO)
|
2015-02-12 12:37:29 +01:00
|
|
|
int main( void )
|
2011-05-26 15:16:06 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("MBEDTLS_ENTROPY_C and/or MBEDTLS_FS_IO not defined.\n");
|
2011-05-26 15:16:06 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
2011-01-27 17:50:02 +01:00
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
FILE *f;
|
2018-04-29 21:40:36 +02:00
|
|
|
int i, k, ret = 1;
|
|
|
|
int exit_code = MBEDTLS_EXIT_FAILURE;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_context entropy;
|
|
|
|
unsigned char buf[MBEDTLS_ENTROPY_BLOCK_SIZE];
|
2011-01-27 17:50:02 +01:00
|
|
|
|
|
|
|
if( argc < 2 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_fprintf( stderr, "usage: %s <output filename>\n", argv[0] );
|
2018-04-29 21:40:36 +02:00
|
|
|
return( exit_code );
|
2011-01-27 17:50:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if( ( f = fopen( argv[1], "wb+" ) ) == NULL )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed to open '%s' for writing.\n", argv[1] );
|
2018-04-29 21:40:36 +02:00
|
|
|
return( exit_code );
|
2011-01-27 17:50:02 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_init( &entropy );
|
2011-01-27 17:50:02 +01:00
|
|
|
|
|
|
|
for( i = 0, k = 768; i < k; i++ )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_entropy_func( &entropy, buf, sizeof( buf ) );
|
2011-12-03 22:45:14 +01:00
|
|
|
if( ret != 0 )
|
2011-11-27 22:07:34 +01:00
|
|
|
{
|
2018-04-29 21:40:36 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_entropy_func returned -%04X\n",
|
|
|
|
ret );
|
2011-12-03 22:45:14 +01:00
|
|
|
goto cleanup;
|
2011-11-27 22:07:34 +01:00
|
|
|
}
|
2011-01-27 17:50:02 +01:00
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
fwrite( buf, 1, sizeof( buf ), f );
|
2011-01-27 17:50:02 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "Generating %ldkb of data in file '%s'... %04.1f" \
|
2015-01-26 16:35:25 +01:00
|
|
|
"%% done\r", (long)(sizeof(buf) * k / 1024), argv[1], (100 * (float) (i + 1)) / k );
|
2011-01-27 17:50:02 +01:00
|
|
|
fflush( stdout );
|
|
|
|
}
|
|
|
|
|
2018-04-29 21:40:36 +02:00
|
|
|
exit_code = MBEDTLS_EXIT_SUCCESS;
|
2011-12-03 22:45:14 +01:00
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n" );
|
2011-01-27 17:50:02 +01:00
|
|
|
|
|
|
|
fclose( f );
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_free( &entropy );
|
2011-12-03 22:45:14 +01:00
|
|
|
|
2018-04-29 21:40:36 +02:00
|
|
|
return( exit_code );
|
2011-01-27 17:50:02 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ENTROPY_C */
|