• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  *  \brief Use and generate multiple entropies calls into a file
3  *
4  *  Copyright The Mbed TLS Contributors
5  *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
6  *
7  *  This file is provided under the Apache License 2.0, or the
8  *  GNU General Public License v2.0 or later.
9  *
10  *  **********
11  *  Apache License 2.0:
12  *
13  *  Licensed under the Apache License, Version 2.0 (the "License"); you may
14  *  not use this file except in compliance with the License.
15  *  You may obtain a copy of the License at
16  *
17  *  http://www.apache.org/licenses/LICENSE-2.0
18  *
19  *  Unless required by applicable law or agreed to in writing, software
20  *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
21  *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22  *  See the License for the specific language governing permissions and
23  *  limitations under the License.
24  *
25  *  **********
26  *
27  *  **********
28  *  GNU General Public License v2.0 or later:
29  *
30  *  This program is free software; you can redistribute it and/or modify
31  *  it under the terms of the GNU General Public License as published by
32  *  the Free Software Foundation; either version 2 of the License, or
33  *  (at your option) any later version.
34  *
35  *  This program is distributed in the hope that it will be useful,
36  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
37  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
38  *  GNU General Public License for more details.
39  *
40  *  You should have received a copy of the GNU General Public License along
41  *  with this program; if not, write to the Free Software Foundation, Inc.,
42  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
43  *
44  *  **********
45  */
46 
47 #if !defined(MBEDTLS_CONFIG_FILE)
48 #include "mbedtls/config.h"
49 #else
50 #include MBEDTLS_CONFIG_FILE
51 #endif
52 
53 #if defined(MBEDTLS_PLATFORM_C)
54 #include "mbedtls/platform.h"
55 #else
56 #include <stdio.h>
57 #include <stdlib.h>
58 #define mbedtls_fprintf         fprintf
59 #define mbedtls_printf          printf
60 #define mbedtls_exit            exit
61 #define MBEDTLS_EXIT_SUCCESS    EXIT_SUCCESS
62 #define MBEDTLS_EXIT_FAILURE    EXIT_FAILURE
63 #endif /* MBEDTLS_PLATFORM_C */
64 
65 #if defined(MBEDTLS_ENTROPY_C) && defined(MBEDTLS_FS_IO)
66 #include "mbedtls/entropy.h"
67 
68 #include <stdio.h>
69 #endif
70 
71 #if !defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_FS_IO)
main(void)72 int main( void )
73 {
74     mbedtls_printf("MBEDTLS_ENTROPY_C and/or MBEDTLS_FS_IO not defined.\n");
75     mbedtls_exit( 0 );
76 }
77 #else
78 
79 
main(int argc,char * argv[])80 int main( int argc, char *argv[] )
81 {
82     FILE *f;
83     int i, k, ret = 1;
84     int exit_code = MBEDTLS_EXIT_FAILURE;
85     mbedtls_entropy_context entropy;
86     unsigned char buf[MBEDTLS_ENTROPY_BLOCK_SIZE];
87 
88     if( argc < 2 )
89     {
90         mbedtls_fprintf( stderr, "usage: %s <output filename>\n", argv[0] );
91         mbedtls_exit( exit_code );
92     }
93 
94     if( ( f = fopen( argv[1], "wb+" ) ) == NULL )
95     {
96         mbedtls_printf( "failed to open '%s' for writing.\n", argv[1] );
97         mbedtls_exit( exit_code );
98     }
99 
100     mbedtls_entropy_init( &entropy );
101 
102     for( i = 0, k = 768; i < k; i++ )
103     {
104         ret = mbedtls_entropy_func( &entropy, buf, sizeof( buf ) );
105         if( ret != 0 )
106         {
107             mbedtls_printf( "  failed\n  !  mbedtls_entropy_func returned -%04X\n",
108                             ret );
109             goto cleanup;
110         }
111 
112         fwrite( buf, 1, sizeof( buf ), f );
113 
114         mbedtls_printf( "Generating %ldkb of data in file '%s'... %04.1f" \
115                 "%% done\r", (long)(sizeof(buf) * k / 1024), argv[1], (100 * (float) (i + 1)) / k );
116         fflush( stdout );
117     }
118 
119     exit_code = MBEDTLS_EXIT_SUCCESS;
120 
121 cleanup:
122     mbedtls_printf( "\n" );
123 
124     fclose( f );
125     mbedtls_entropy_free( &entropy );
126 
127     mbedtls_exit( exit_code );
128 }
129 #endif /* MBEDTLS_ENTROPY_C */
130