2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Classic "Hello, world" demonstration 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
|
2010-07-18 22:36:00 +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
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-01-03 22:22:43 +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.
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2009-01-03 22:22:43 +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
|
2009-01-03 22:22:43 +01: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
|
2017-07-03 12:16:57 +02:00
|
|
|
#include <stdlib.h>
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
2017-06-28 14:26:36 +02:00
|
|
|
#define mbedtls_printf printf
|
2019-01-31 14:20:20 +01:00
|
|
|
#define mbedtls_exit exit
|
2017-06-28 14:26:36 +02:00
|
|
|
#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
|
|
|
|
#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
|
2015-01-19 15:26:37 +01:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MD5_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/md5.h"
|
2015-02-11 15:06:19 +01:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_MD5_C)
|
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_MD5_C not defined.\n");
|
2011-05-26 15:16:06 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
2019-01-31 14:20:20 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_CHECK_PARAMS)
|
|
|
|
#include "mbedtls/platform_util.h"
|
|
|
|
void mbedtls_param_failed( const char *failure_condition,
|
|
|
|
const char *file,
|
|
|
|
int line )
|
|
|
|
{
|
|
|
|
mbedtls_printf( "%s:%i: Input param failed - %s\n",
|
|
|
|
file, line, failure_condition );
|
|
|
|
mbedtls_exit( MBEDTLS_EXIT_FAILURE );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-02-12 12:37:29 +01:00
|
|
|
int main( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2017-06-28 14:26:36 +02:00
|
|
|
int i, ret;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char digest[16];
|
|
|
|
char str[] = "Hello, world!";
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n MD5('%s') = ", str );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2018-01-22 11:48:08 +01:00
|
|
|
if( ( ret = mbedtls_md5_ret( (unsigned char *) str, 13, digest ) ) != 0 )
|
2017-06-28 14:26:36 +02:00
|
|
|
return( MBEDTLS_EXIT_FAILURE );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
for( i = 0; i < 16; i++ )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "%02x", digest[i] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " Press Enter to exit this program.\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
|
2017-06-28 14:26:36 +02:00
|
|
|
return( MBEDTLS_EXIT_SUCCESS );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_MD5_C */
|