]> pd.if.org Git - uuid/blob - t/md5.c
Set hash tests to auto calculate number of tests
[uuid] / t / md5.c
1 /*
2  * test program for uuid library
3  *
4  * written by nathan wagner and placed in the public domain
5  */
6 #include <stdio.h>
7 #include <string.h>
8 #include <stdlib.h>
9 #include <time.h>
10
11 #include "hash.h"
12 #include "pduuid.h"
13 #include "ctap.h"
14
15 void ufmt(pd_uuid_t *uuid, char *s) {
16         int i;
17         for (i=0;i<4;i++) {
18                 s += sprintf(s, "%02x", uuid->data[i]);
19         }
20         s += sprintf(s, "-");
21         for (;i<6;i++) {
22                 s += sprintf(s, "%02x", uuid->data[i]);
23         }
24         s += sprintf(s, "-");
25         for (;i<8;i++) {
26                 s += sprintf(s, "%02x", uuid->data[i]);
27         }
28         s += sprintf(s, "-");
29         for (;i<10;i++) {
30                 s += sprintf(s, "%02x", uuid->data[i]);
31         }
32         s += sprintf(s, "-");
33         for (;i<16;i++) {
34                 s += sprintf(s, "%02x", uuid->data[i]);
35         }
36 }
37
38 int str_ok(pd_uuid_t *uuid, char *s, char *name) {
39         char fmt[37];
40         ufmt(uuid, fmt);
41         is_string(s, fmt, name);
42         return 0;
43 }
44
45 int main(int ac, char *av[]) {
46         unsigned char tmp[16];
47         hash_state md;
48         int i;
49         int n;
50
51         static const struct {
52                 char *msg;
53                 unsigned char hash[16];
54   } tests[] = {
55     { "",
56       { 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
57         0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e } },
58     { "a",
59       {0x0c, 0xc1, 0x75, 0xb9, 0xc0, 0xf1, 0xb6, 0xa8,
60        0x31, 0xc3, 0x99, 0xe2, 0x69, 0x77, 0x26, 0x61 } },
61     { "abc",
62       { 0x90, 0x01, 0x50, 0x98, 0x3c, 0xd2, 0x4f, 0xb0,
63         0xd6, 0x96, 0x3f, 0x7d, 0x28, 0xe1, 0x7f, 0x72 } },
64     { "message digest",
65       { 0xf9, 0x6b, 0x69, 0x7d, 0x7c, 0xb7, 0x93, 0x8d,
66         0x52, 0x5a, 0x2f, 0x31, 0xaa, 0xf1, 0x61, 0xd0 } },
67     { "abcdefghijklmnopqrstuvwxyz",
68       { 0xc3, 0xfc, 0xd3, 0xd7, 0x61, 0x92, 0xe4, 0x00,
69         0x7d, 0xfb, 0x49, 0x6c, 0xca, 0x67, 0xe1, 0x3b } },
70     { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
71       { 0xd1, 0x74, 0xab, 0x98, 0xd2, 0x77, 0xd9, 0xf5,
72         0xa5, 0x61, 0x1c, 0x2c, 0x9f, 0x41, 0x9d, 0x9f } },
73     { "12345678901234567890123456789012345678901234567890123456789012345678901234567890",
74       { 0x57, 0xed, 0xf4, 0xa2, 0x2b, 0xe3, 0xc9, 0x55,
75         0xac, 0x49, 0xda, 0x2e, 0x21, 0x07, 0xb6, 0x7a } },
76     { NULL, { 0 } }
77   };
78
79         for(n=0;tests[n].msg != NULL;n++);
80
81         plan(n);
82
83         for (i = 0; tests[i].msg != NULL; i++) {
84                 md5_init(&md);
85                 md5_process(&md, (unsigned char *)tests[i].msg, (unsigned long)strlen(tests[i].msg));
86                 md5_done(&md, tmp);
87                 ok(memcmp(tmp, tests[i].hash, 16) == 0, "md5 %s", tests[i].msg);
88         }
89
90         return 0;
91 }