2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan Metzmacher
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 3 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, see <http://www.gnu.org/licenses/>.
21 #include "../lib/crypto/crypto.h"
23 struct torture_context
;
26 This uses the test values from rfc1321
28 bool torture_local_crypto_md5(struct torture_context
*torture
)
38 .md5
= "d41d8cd98f00b204e9800998ecf8427e"
41 .md5
= "0cc175b9c0f1b6a831c399e269772661"
44 .md5
= "900150983cd24fb0d6963f7d28e17f72"
46 .data
= "message digest",
47 .md5
= "f96b697d7cb7938d525a2f31aaf161d0"
49 .data
= "abcdefghijklmnopqrstuvwxyz",
50 .md5
= "c3fcd3d76192e4007dfb496cca67e13b"
52 .data
= "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
53 "abcdefghijklmnopqrstuvwxyz"
55 .md5
= "d174ab98d277d9f5a5611c2c9f419d9f"
57 .data
= "123456789012345678901234567890"
58 "123456789012345678901234567890"
59 "12345678901234567890",
60 .md5
= "57edf4a22be3c955ac49da2e2107b67a"
64 for (i
=0; i
< ARRAY_SIZE(testarray
); i
++) {
65 struct MD5Context ctx
;
72 data
= data_blob_string_const(testarray
[i
].data
);
73 md5blob
= strhex_to_data_blob(NULL
, testarray
[i
].md5
);
76 MD5Update(&ctx
, data
.data
, data
.length
);
79 e
= memcmp(md5blob
.data
,
81 MIN(md5blob
.length
, sizeof(md5
)));
83 printf("md5 test[%u]: failed\n", i
);
84 dump_data(0, data
.data
, data
.length
);
85 dump_data(0, md5blob
.data
, md5blob
.length
);
86 dump_data(0, md5
, sizeof(md5
));
89 talloc_free(md5blob
.data
);