2011-01-27 17:50:02 +01:00
|
|
|
/**
|
2011-12-03 22:45:14 +01:00
|
|
|
* \brief Use and generate random data into a file via the CTR_DBRG based on AES
|
2011-01-27 17:50:02 +01:00
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
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-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:46:55 +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 21:46:55 +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_CTR_DRBG_C) && defined(MBEDTLS_ENTROPY_C) && \
|
|
|
|
defined(MBEDTLS_FS_IO)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/ctr_drbg.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_CTR_DRBG_C) || !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_CTR_DRBG_C and/or MBEDTLS_ENTROPY_C and/or MBEDTLS_FS_IO not defined.\n");
|
2019-04-24 14:24:46 +02:00
|
|
|
mbedtls_exit( 0 );
|
2011-05-26 15:16:06 +02:00
|
|
|
}
|
|
|
|
#else
|
2018-12-06 18:43:31 +01:00
|
|
|
|
|
|
|
|
2011-01-27 17:50:02 +01:00
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
FILE *f;
|
2018-04-29 21:46:55 +02:00
|
|
|
int i, k, ret = 1;
|
|
|
|
int exit_code = MBEDTLS_EXIT_FAILURE;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_context ctr_drbg;
|
|
|
|
mbedtls_entropy_context entropy;
|
2011-01-27 17:50:02 +01:00
|
|
|
unsigned char buf[1024];
|
|
|
|
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_ctr_drbg_init( &ctr_drbg );
|
|
|
|
|
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] );
|
2019-04-24 14:24:46 +02:00
|
|
|
mbedtls_exit( 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] );
|
2019-04-24 14:24:46 +02:00
|
|
|
mbedtls_exit( exit_code );
|
2011-01-27 17:50:02 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_init( &entropy );
|
2015-04-28 22:52:30 +02:00
|
|
|
ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, (const unsigned char *) "RANDOM_GEN", 10 );
|
2011-12-15 21:05:53 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_printf( "failed in mbedtls_ctr_drbg_seed: %d\n", ret );
|
2011-12-15 21:05:53 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_OFF );
|
2011-01-27 17:50:02 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_FS_IO)
|
|
|
|
ret = mbedtls_ctr_drbg_update_seed_file( &ctr_drbg, "seedfile" );
|
2011-12-05 14:23:51 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ret == MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR )
|
2011-12-05 14:23:51 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "Failed to open seedfile. Generating one.\n" );
|
|
|
|
ret = mbedtls_ctr_drbg_write_seed_file( &ctr_drbg, "seedfile" );
|
2011-12-05 14:23:51 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed in mbedtls_ctr_drbg_write_seed_file: %d\n", ret );
|
2011-12-05 14:23:51 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( ret != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed in mbedtls_ctr_drbg_update_seed_file: %d\n", ret );
|
2011-12-05 14:23:51 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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_ctr_drbg_random( &ctr_drbg, buf, sizeof( buf ) );
|
2011-12-03 22:45:14 +01:00
|
|
|
if( ret != 0 )
|
2011-11-27 22:07:34 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("failed!\n");
|
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:46:55 +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_ctr_drbg_free( &ctr_drbg );
|
|
|
|
mbedtls_entropy_free( &entropy );
|
2011-12-03 22:45:14 +01:00
|
|
|
|
2019-04-24 14:24:46 +02:00
|
|
|
mbedtls_exit( exit_code );
|
2011-01-27 17:50:02 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_CTR_DRBG_C && MBEDTLS_ENTROPY_C */
|