]> git.sesse.net Git - vlc/blob - test/src/misc/md5.c
20141643ec3ce31504039d0ee693f649e703930b
[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     { "", "d41d8cd98f00b204e9800998ecf8427e" },
41     { "a", "0cc175b9c0f1b6a831c399e269772661" },
42     { "abc", "900150983cd24fb0d6963f7d28e17f72" },
43     { "message digest", "f96b697d7cb7938d525a2f31aaf161d0" },
44     { "abcdefghijklmnopqrstuvwxyz", "c3fcd3d76192e4007dfb496cca67e13b" },
45     { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
46       "d174ab98d277d9f5a5611c2c9f419d9f" },
47     { "12345678901234567890123456789012345678901234567890123456789012345678901"
48       "234567890", "57edf4a22be3c955ac49da2e2107b67a" },
49     { "azertyuiop", "7682fe272099ea26efe39c890b33675b"    },
50     { NULL,         NULL            }
51 };
52
53 static void test_config_StringEscape()
54 {
55     for( int i = 0; md5_samples[i].psz_string; i++ )
56     {
57         struct md5_s md5;
58         InitMD5( &md5 );
59         AddMD5( &md5, md5_samples[i].psz_string, strlen( md5_samples[i].psz_string ) );
60         EndMD5( &md5 );
61         char * psz_hash = psz_md5_hash( &md5 );
62
63         printf( "Output: %s, Expected: %s\n", psz_hash, md5_samples[i].psz_md5 );
64         assert( !strcmp( psz_hash, md5_samples[i].psz_md5 ) );
65         free( psz_hash );
66     }
67 }
68
69 int main( void )
70 {
71     log( "Testing md5 calculation\n" );
72     test_config_StringEscape();
73
74     return 0;
75 }