Merge Samba3 and Samba4 together
[sfrench/samba-autobuild/.git] / source4 / lib / crypto / hmacmd5test.c
1 /* 
2    Unix SMB/CIFS implementation.
3    HMAC MD5 tests
4    Copyright (C) Stefan Metzmacher 2006
5    
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.
10    
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.
15    
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/>.
18 */
19 #include "includes.h"
20 #include "lib/crypto/crypto.h"
21
22 struct torture_context;
23
24 static DATA_BLOB data_blob_repeat_byte(uint8_t byte, size_t length)
25 {
26         DATA_BLOB b = data_blob(NULL, length);
27         memset(b.data, byte, length);
28         return b;
29 }
30
31 /*
32  This uses the test values from rfc 2104, 2202
33 */
34 bool torture_local_crypto_hmacmd5(struct torture_context *torture) 
35 {
36         bool ret = true;
37         uint32_t i;
38         struct {
39                 DATA_BLOB key;
40                 DATA_BLOB data;
41                 DATA_BLOB md5;
42         } testarray[8];
43
44         testarray[0].key        = data_blob_repeat_byte(0x0b, 16);
45         testarray[0].data       = data_blob_string_const("Hi There");
46         testarray[0].md5        = strhex_to_data_blob("9294727a3638bb1c13f48ef8158bfc9d");
47
48         testarray[1].key        = data_blob_string_const("Jefe");
49         testarray[1].data       = data_blob_string_const("what do ya want for nothing?");
50         testarray[1].md5        = strhex_to_data_blob("750c783e6ab0b503eaa86e310a5db738");
51
52         testarray[2].key        = data_blob_repeat_byte(0xaa, 16);
53         testarray[2].data       = data_blob_repeat_byte(0xdd, 50);
54         testarray[2].md5        = strhex_to_data_blob("56be34521d144c88dbb8c733f0e8b3f6");
55
56         testarray[3].key        = strhex_to_data_blob("0102030405060708090a0b0c0d0e0f10111213141516171819");
57         testarray[3].data       = data_blob_repeat_byte(0xcd, 50);
58         testarray[3].md5        = strhex_to_data_blob("697eaf0aca3a3aea3a75164746ffaa79");
59
60         testarray[4].key        = data_blob_repeat_byte(0x0c, 16);
61         testarray[4].data       = data_blob_string_const("Test With Truncation");
62         testarray[4].md5        = strhex_to_data_blob("56461ef2342edc00f9bab995690efd4c");
63
64         testarray[5].key        = data_blob_repeat_byte(0xaa, 80);
65         testarray[5].data       = data_blob_string_const("Test Using Larger Than Block-Size Key - Hash Key First");
66         testarray[5].md5        = strhex_to_data_blob("6b1ab7fe4bd7bf8f0b62e6ce61b9d0cd");
67
68         testarray[6].key        = data_blob_repeat_byte(0xaa, 80);
69         testarray[6].data       = data_blob_string_const("Test Using Larger Than Block-Size Key "
70                                                          "and Larger Than One Block-Size Data");
71         testarray[6].md5        = strhex_to_data_blob("6f630fad67cda0ee1fb1f562db3aa53e");
72
73         testarray[7].key        = data_blob(NULL, 0);
74
75         for (i=0; testarray[i].key.data; i++) {
76                 HMACMD5Context ctx;
77                 uint8_t md5[16];
78                 int e;
79
80                 hmac_md5_init_rfc2104(testarray[i].key.data, testarray[i].key.length, &ctx);
81                 hmac_md5_update(testarray[i].data.data, testarray[i].data.length, &ctx);
82                 hmac_md5_final(md5, &ctx);
83
84                 e = memcmp(testarray[i].md5.data,
85                            md5,
86                            MIN(testarray[i].md5.length, sizeof(md5)));
87                 if (e != 0) {
88                         printf("hmacmd5 test[%u]: failed\n", i);
89                         dump_data(0, testarray[i].key.data, testarray[i].key.length);
90                         dump_data(0, testarray[i].data.data, testarray[i].data.length);
91                         dump_data(0, testarray[i].md5.data, testarray[i].md5.length);
92                         dump_data(0, md5, sizeof(md5));
93                         ret = false;
94                 }
95         }
96
97         return ret;
98 }