]> git.sesse.net Git - vlc/blob - test/src/misc/md5.c
9f7e1a79bca69f468d653f7a6ae76ae407e4e071
[vlc] / test / src / misc / md5.c
1 /*****************************************************************************
2  * md5.c: test md5
3  *****************************************************************************
4  * Copyright (C) 2011 VideoLAN
5  * $Id$
6  *
7  * Authors: Jean-Bapstiste Kempf <jb@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "../../libvlc/test.h"
28
29 #include <vlc_common.h>
30 #include <vlc_md5.h>
31
32 typedef struct
33 {
34     const char *psz_string;
35     const char *psz_md5;
36 } md5_sample_t;
37
38 static const md5_sample_t md5_samples[] =
39 {
40     { "azertyuiop", "7682fe272099ea26efe39c890b33675b"    },
41     { NULL,         NULL            }
42 };
43
44 static void test_config_StringEscape()
45 {
46     for( int i = 0; md5_samples[i].psz_string; i++ )
47     {
48         struct md5_s md5;
49         InitMD5( &md5 );
50         AddMD5( &md5, md5_samples[i].psz_string, strlen( md5_samples[i].psz_string ) );
51         EndMD5( &md5 );
52         char * psz_hash = psz_md5_hash( &md5 );
53
54         printf( "Output: %s, Expected: %s\n", psz_hash, md5_samples[i].psz_md5 );
55         assert( !strcmp( psz_hash, md5_samples[i].psz_md5 ) );
56         free( psz_hash );
57     }
58 }
59
60 int main( void )
61 {
62     log( "Testing md5 calculation\n" );
63     test_config_StringEscape();
64
65     return 0;
66 }