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