2 * @brief test cases for the MD5 code
4 /* Copyright (C) 2006 Olly Betts
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
38 static testcase md5_testcases
[] = {
39 { "", "d41d8cd98f00b204e9800998ecf8427e" },
40 { "test", "098f6bcd4621d373cade4e832627b4f6" },
41 { "\x80\x81\x82", "b385760a988b494d3f9df43456928176" },
47 for (testcase
* t
= md5_testcases
; t
->string
; ++t
) {
49 md5_string(t
->string
, md5
);
50 for (size_t i
= 0; i
< md5
.size(); ++i
) {
52 sprintf(buf
, "%02x", static_cast<unsigned char>(md5
[i
]));
55 if (hexhash
!= t
->hash
) {
56 cerr
<< "md5 of \"" << t
->string
<< "\" should be \"" << t
->hash
<< "\" not \"" << hexhash
<< "\"" << endl
;