2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_HEADER */
|
2009-06-28 21:50:27 +00:00
|
|
|
#include <polarssl/md2.h>
|
|
|
|
#include <polarssl/md4.h>
|
|
|
|
#include <polarssl/md5.h>
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_HEADER */
|
2009-06-28 21:50:27 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD2_C */
|
|
|
|
void md2_text( char *text_src_string, char *hex_hash_string )
|
2009-06-28 21:50:27 +00:00
|
|
|
{
|
|
|
|
unsigned char src_str[1000];
|
|
|
|
unsigned char hash_str[1000];
|
|
|
|
unsigned char output[33];
|
|
|
|
|
|
|
|
memset(src_str, 0x00, 1000);
|
|
|
|
memset(hash_str, 0x00, 1000);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
strcpy( (char *) src_str, text_src_string );
|
2009-06-28 21:50:27 +00:00
|
|
|
|
|
|
|
md2( src_str, strlen( (char *) src_str ), output );
|
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
|
2009-06-28 21:50:27 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-06-28 21:50:27 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD4_C */
|
|
|
|
void md4_text( char *text_src_string, char *hex_hash_string )
|
2009-06-28 21:50:27 +00:00
|
|
|
{
|
|
|
|
unsigned char src_str[1000];
|
|
|
|
unsigned char hash_str[1000];
|
|
|
|
unsigned char output[33];
|
|
|
|
|
|
|
|
memset(src_str, 0x00, 1000);
|
|
|
|
memset(hash_str, 0x00, 1000);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
strcpy( (char *) src_str, text_src_string );
|
2009-06-28 21:50:27 +00:00
|
|
|
|
|
|
|
md4( src_str, strlen( (char *) src_str ), output );
|
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
|
2009-06-28 21:50:27 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-06-28 21:50:27 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD5_C */
|
|
|
|
void md5_text( char *text_src_string, char *hex_hash_string )
|
2009-06-28 21:50:27 +00:00
|
|
|
{
|
|
|
|
unsigned char src_str[1000];
|
|
|
|
unsigned char hash_str[1000];
|
|
|
|
unsigned char output[33];
|
|
|
|
|
|
|
|
memset(src_str, 0x00, 1000);
|
|
|
|
memset(hash_str, 0x00, 1000);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
strcpy( (char *) src_str, text_src_string );
|
2009-06-28 21:50:27 +00:00
|
|
|
|
|
|
|
md5( src_str, strlen( (char *) src_str ), output );
|
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
|
2009-06-28 21:50:27 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD2_C */
|
|
|
|
void md2_hmac( int trunc_size, char *hex_key_string, char *hex_src_string,
|
|
|
|
char *hex_hash_string )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char src_str[10000];
|
|
|
|
unsigned char key_str[10000];
|
|
|
|
unsigned char hash_str[10000];
|
|
|
|
unsigned char output[33];
|
2009-07-11 19:15:20 +00:00
|
|
|
int key_len, src_len;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(src_str, 0x00, 10000);
|
|
|
|
memset(key_str, 0x00, 10000);
|
|
|
|
memset(hash_str, 0x00, 10000);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
key_len = unhexify( key_str, hex_key_string );
|
|
|
|
src_len = unhexify( src_str, hex_src_string );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
md2_hmac( key_str, key_len, src_str, src_len, output );
|
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strncmp( (char *) hash_str, hex_hash_string, trunc_size * 2 ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD4_C */
|
|
|
|
void md4_hmac( int trunc_size, char *hex_key_string, char *hex_src_string,
|
|
|
|
char *hex_hash_string )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char src_str[10000];
|
|
|
|
unsigned char key_str[10000];
|
|
|
|
unsigned char hash_str[10000];
|
|
|
|
unsigned char output[33];
|
2009-07-11 19:15:20 +00:00
|
|
|
int key_len, src_len;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(src_str, 0x00, 10000);
|
|
|
|
memset(key_str, 0x00, 10000);
|
|
|
|
memset(hash_str, 0x00, 10000);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
key_len = unhexify( key_str, hex_key_string );
|
|
|
|
src_len = unhexify( src_str, hex_src_string );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
md4_hmac( key_str, key_len, src_str, src_len, output );
|
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strncmp( (char *) hash_str, hex_hash_string, trunc_size * 2 ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD5_C */
|
|
|
|
void md5_hmac( int trunc_size, char *hex_key_string, char *hex_src_string,
|
|
|
|
char *hex_hash_string )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char src_str[10000];
|
|
|
|
unsigned char key_str[10000];
|
|
|
|
unsigned char hash_str[10000];
|
|
|
|
unsigned char output[33];
|
2009-07-11 19:15:20 +00:00
|
|
|
int key_len, src_len;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(src_str, 0x00, 10000);
|
|
|
|
memset(key_str, 0x00, 10000);
|
|
|
|
memset(hash_str, 0x00, 10000);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
key_len = unhexify( key_str, hex_key_string );
|
|
|
|
src_len = unhexify( src_str, hex_src_string );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
md5_hmac( key_str, key_len, src_str, src_len, output );
|
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strncmp( (char *) hash_str, hex_hash_string, trunc_size * 2 ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-09-15 13:20:37 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD2_C:POLARSSL_FS_IO */
|
2013-08-20 09:48:36 +00:00
|
|
|
void md2_file( char *filename, char *hex_hash_string )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char hash_str[65];
|
|
|
|
unsigned char output[33];
|
|
|
|
|
|
|
|
memset(hash_str, 0x00, 65);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
md2_file( filename, output);
|
2009-07-06 06:40:23 +00:00
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-09-15 13:20:37 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD4_C:POLARSSL_FS_IO */
|
2013-08-20 09:48:36 +00:00
|
|
|
void md4_file( char *filename, char *hex_hash_string )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char hash_str[65];
|
|
|
|
unsigned char output[33];
|
|
|
|
|
|
|
|
memset(hash_str, 0x00, 65);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
md4_file( filename, output);
|
2009-07-06 06:40:23 +00:00
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-09-15 13:20:37 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD5_C:POLARSSL_FS_IO */
|
2013-08-20 09:48:36 +00:00
|
|
|
void md5_file( char *filename, char *hex_hash_string )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char hash_str[65];
|
|
|
|
unsigned char output[33];
|
|
|
|
|
|
|
|
memset(hash_str, 0x00, 65);
|
|
|
|
memset(output, 0x00, 33);
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
md5_file( filename, output);
|
2009-07-06 06:40:23 +00:00
|
|
|
hexify( hash_str, output, 16 );
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
TEST_ASSERT( strcmp( (char *) hash_str, hex_hash_string ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD2_C */
|
|
|
|
void md2_selftest()
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
TEST_ASSERT( md2_self_test( 0 ) == 0 );
|
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD4_C */
|
|
|
|
void md4_selftest()
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
TEST_ASSERT( md4_self_test( 0 ) == 0 );
|
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_MD5_C */
|
|
|
|
void md5_selftest()
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
TEST_ASSERT( md5_self_test( 0 ) == 0 );
|
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|