Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbedtls by
Diff: tests/suites/test_suite_mdx.function
- Revision:
- 0:cdf462088d13
diff -r 000000000000 -r cdf462088d13 tests/suites/test_suite_mdx.function
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/suites/test_suite_mdx.function Thu Jan 05 00:18:44 2017 +0000
@@ -0,0 +1,114 @@
+/* BEGIN_HEADER */
+#include "mbedtls/md2.h"
+#include "mbedtls/md4.h"
+#include "mbedtls/md5.h"
+#include "mbedtls/ripemd160.h"
+/* END_HEADER */
+
+/* BEGIN_CASE depends_on:MBEDTLS_MD2_C */
+void md2_text( char *text_src_string, char *hex_hash_string )
+{
+ unsigned char src_str[100];
+ unsigned char hash_str[33];
+ unsigned char output[16];
+
+ memset( src_str, 0x00, sizeof src_str );
+ memset( hash_str, 0x00, sizeof hash_str );
+ memset( output, 0x00, sizeof output );
+
+ strncpy( (char *) src_str, text_src_string, sizeof(src_str) - 1 );
+
+ mbedtls_md2( src_str, strlen( (char *) src_str ), output );
+ hexify( hash_str, output, sizeof output );
+
+ TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
+}
+/* END_CASE */
+
+/* BEGIN_CASE depends_on:MBEDTLS_MD4_C */
+void md4_text( char *text_src_string, char *hex_hash_string )
+{
+ unsigned char src_str[100];
+ unsigned char hash_str[33];
+ unsigned char output[16];
+
+ memset( src_str, 0x00, sizeof src_str );
+ memset( hash_str, 0x00, sizeof hash_str );
+ memset( output, 0x00, sizeof output );
+
+ strncpy( (char *) src_str, text_src_string, sizeof(src_str) - 1 );
+
+ mbedtls_md4( src_str, strlen( (char *) src_str ), output );
+ hexify( hash_str, output, sizeof output );
+
+ TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
+}
+/* END_CASE */
+
+/* BEGIN_CASE depends_on:MBEDTLS_MD5_C */
+void md5_text( char *text_src_string, char *hex_hash_string )
+{
+ unsigned char src_str[100];
+ unsigned char hash_str[33];
+ unsigned char output[16];
+
+ memset( src_str, 0x00, sizeof src_str );
+ memset( hash_str, 0x00, sizeof hash_str );
+ memset( output, 0x00, sizeof output );
+
+ strncpy( (char *) src_str, text_src_string, sizeof(src_str) - 1 );
+
+ mbedtls_md5( src_str, strlen( (char *) src_str ), output );
+ hexify( hash_str, output, sizeof output );
+
+ TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
+}
+/* END_CASE */
+
+/* BEGIN_CASE depends_on:MBEDTLS_RIPEMD160_C */
+void ripemd160_text( char *text_src_string, char *hex_hash_string )
+{
+ unsigned char src_str[100];
+ unsigned char hash_str[41];
+ unsigned char output[20];
+
+ memset(src_str, 0x00, sizeof src_str);
+ memset(hash_str, 0x00, sizeof hash_str);
+ memset(output, 0x00, sizeof output);
+
+ strncpy( (char *) src_str, text_src_string, sizeof(src_str) - 1 );
+
+ mbedtls_ripemd160( src_str, strlen( (char *) src_str ), output );
+ hexify( hash_str, output, sizeof output );
+
+ TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
+}
+/* END_CASE */
+
+/* BEGIN_CASE depends_on:MBEDTLS_MD2_C:MBEDTLS_SELF_TEST */
+void md2_selftest()
+{
+ TEST_ASSERT( mbedtls_md2_self_test( 1 ) == 0 );
+}
+/* END_CASE */
+
+/* BEGIN_CASE depends_on:MBEDTLS_MD4_C:MBEDTLS_SELF_TEST */
+void md4_selftest()
+{
+ TEST_ASSERT( mbedtls_md4_self_test( 1 ) == 0 );
+}
+/* END_CASE */
+
+/* BEGIN_CASE depends_on:MBEDTLS_MD5_C:MBEDTLS_SELF_TEST */
+void md5_selftest()
+{
+ TEST_ASSERT( mbedtls_md5_self_test( 1 ) == 0 );
+}
+/* END_CASE */
+
+/* BEGIN_CASE depends_on:MBEDTLS_RIPEMD160_C:MBEDTLS_SELF_TEST */
+void ripemd160_selftest()
+{
+ TEST_ASSERT( mbedtls_ripemd160_self_test( 1 ) == 0 );
+}
+/* END_CASE */
