* m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
[gnulib.git] / tests / test-hmac-sha1.c
1 /*
2  * Copyright (C) 2005 Free Software Foundation
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2, or (at your option)
7  * any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.  */
18
19 /* Written by Simon Josefsson.  */
20
21 #include <config.h>
22
23 #include <stdio.h>
24 #include <string.h>
25 #include "hmac.h"
26
27 int
28 main (int argc, char *argv[])
29 {
30   {
31     char *key =
32       "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b";
33     size_t key_len = 16;
34     char *data = "Hi There";
35     size_t data_len = 8;
36     char *digest =
37       "\x67\x5b\x0b\x3a\x1b\x4d\xdf\x4e\x12\x48\x72\xda\x6c\x2f\x63\x2b\xfe\xd9\x57\xe9";
38     char out[20];
39
40     if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
41       {
42         printf ("call failure\n");
43         return 1;
44       }
45
46     if (memcmp (digest, out, 20) != 0)
47       {
48         size_t i;
49         printf ("hash 1 mismatch. expected:\n");
50         for (i = 0; i < 20; i++)
51           printf ("%02x ", digest[i] & 0xFF);
52         printf ("\ncomputed:\n");
53         for (i = 0; i < 20; i++)
54           printf ("%02x ", out[i] & 0xFF);
55         printf ("\n");
56         return 1;
57       }
58   }
59
60   {
61     char *key = "Jefe";
62     size_t key_len = 4;
63     char *data = "what do ya want for nothing?";
64     size_t data_len = 28;
65     char *digest =
66       "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79";
67     char out[20];
68
69     if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
70       {
71         printf ("call failure\n");
72         return 1;
73       }
74
75     if (memcmp (digest, out, 20) != 0)
76       {
77         size_t i;
78         printf ("hash 2 mismatch. expected:\n");
79         for (i = 0; i < 20; i++)
80           printf ("%02x ", digest[i] & 0xFF);
81         printf ("\ncomputed:\n");
82         for (i = 0; i < 20; i++)
83           printf ("%02x ", out[i] & 0xFF);
84         printf ("\n");
85         return 1;
86       }
87   }
88
89   {
90     char *key =
91       "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA";
92     size_t key_len = 16;
93     char *data = "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
94       "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
95       "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
96       "\xDD\xDD";
97     size_t data_len = 50;
98     char *digest =
99       "\xd7\x30\x59\x4d\x16\x7e\x35\xd5\x95\x6f\xd8\x00\x3d\x0d\xb3\xd3\xf4\x6d\xc7\xbb";
100     char out[20];
101
102     if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
103       {
104         printf ("call failure\n");
105         return 1;
106       }
107
108     if (memcmp (digest, out, 20) != 0)
109       {
110         size_t i;
111         printf ("hash 3 mismatch. expected:\n");
112         for (i = 0; i < 20; i++)
113           printf ("%02x ", digest[i] & 0xFF);
114         printf ("\ncomputed:\n");
115         for (i = 0; i < 20; i++)
116           printf ("%02x ", out[i] & 0xFF);
117         printf ("\n");
118         return 1;
119       }
120   }
121
122   return 0;
123 }