]> pd.if.org Git - uuid/blob - t/sha1.c
Set hash tests to auto calculate number of tests
[uuid] / t / sha1.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 "ctap.h"
13
14 static void bytestr(unsigned char *h, char *s, int len) {
15         int i;
16         for (i=0; i < len; i++) {
17                 s+= sprintf(s, "%02x", h[i]);
18         }
19 }
20
21 int main(int ac, char *av[]) {
22         unsigned char tmp[20];
23         hash_state md;
24         int i, j;
25         char want[64];
26         char have[64];
27         int n;
28
29         static struct {
30                 char *msg;
31                 int repeat;
32                 unsigned char hash[20];
33         } tests[] = {
34         { "abc", 1, 
35         { 0xa9, 0x99, 0x3e, 0x36, 0x47, 0x06, 0x81, 0x6a,
36         0xba, 0x3e, 0x25, 0x71, 0x78, 0x50, 0xc2, 0x6c,
37         0x9c, 0xd0, 0xd8, 0x9d }
38         },
39         { "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1, 
40         { 0x84, 0x98, 0x3E, 0x44, 0x1C, 0x3B, 0xD2, 0x6E,
41         0xBA, 0xAE, 0x4A, 0xA1, 0xF9, 0x51, 0x29, 0xE5,
42         0xE5, 0x46, 0x70, 0xF1 }
43         },
44         { "a", 1000000, 
45         { 0x34, 0xAA, 0x97, 0x3C, 0xD4, 0xC4, 0xDA, 0xA4,
46         0xF6, 0x1E, 0xEB, 0x2B, 0xDB, 0xAD, 0x27, 0x31,
47         0x65, 0x34, 0x01, 0x6F },
48         },
49         { "0123456701234567012345670123456701234567012345670123456701234567", 10, 
50         {0xDE, 0xA3, 0x56, 0xA2, 0xCD, 0xDD, 0x90, 0xC7, 0xA7, 0xEC, 0xED, 0xC5, 0xEB, 0xB5, 0x63, 0x93, 0x4F, 0x46, 0x04, 0x52},
51         },
52     { NULL, 0, { 0 } }
53   };
54
55         for (n=0;tests[n].msg != NULL; n++);
56
57         plan(2*n);
58
59         for (i = 0; tests[i].msg != NULL; i++) {
60                 sha1_init(&md);
61                 for (j=0; j<tests[i].repeat; j++) {
62                 sha1_process(&md, (unsigned char *)tests[i].msg, (unsigned long)strlen(tests[i].msg));
63                 }
64                 sha1_done(&md, tmp);
65                 ok(memcmp(tmp, tests[i].hash, 20) == 0, "sha1 %s", tests[i].msg);
66                 bytestr(tmp, have, 20);
67                 bytestr(tests[i].hash, want, 20);
68                 is_string(want, have, "sha1 string %s", tests[1].msg);
69         }
70
71         return 0;
72 }